mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-30 10:13:58 +00:00
Change uses for parapoly records to use $ always
This commit is contained in:
@@ -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