mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-13 06:41:26 -07:00
Change uses for parapoly records to use $ always
This commit is contained in:
+2
-2
@@ -27,12 +27,12 @@ map_values :: proc(m: $M/map[$K]$V, allocator := context.allocator) -> (values:
|
||||
return;
|
||||
}
|
||||
|
||||
Map_Entry :: struct(Key, Value: typeid) {
|
||||
Map_Entry :: struct($Key, $Value: typeid) {
|
||||
key: Key,
|
||||
value: Value,
|
||||
}
|
||||
|
||||
Map_Entry_Info :: struct(Key, Value: typeid) {
|
||||
Map_Entry_Info :: struct($Key, $Value: typeid) {
|
||||
hash: uintptr,
|
||||
key: Key,
|
||||
value: Value,
|
||||
|
||||
Reference in New Issue
Block a user