diff options
| -rw-r--r-- | core/encoding/json/marshal.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/encoding/json/marshal.odin b/core/encoding/json/marshal.odin index 79a92a73e..1dadc8ef0 100644 --- a/core/encoding/json/marshal.odin +++ b/core/encoding/json/marshal.odin @@ -267,8 +267,8 @@ marshal_to_writer :: proc(w: io.Writer, v: any, opt: ^Marshal_Options) -> (err: continue } - key := rawptr(runtime.map_cell_index_dynamic(ks, &info.map_info.ks, bucket_index)) - value := rawptr(runtime.map_cell_index_dynamic(vs, &info.map_info.vs, bucket_index)) + key := rawptr(runtime.map_cell_index_dynamic(ks, info.map_info.ks, bucket_index)) + value := rawptr(runtime.map_cell_index_dynamic(vs, info.map_info.vs, bucket_index)) // check for string type { |