aboutsummaryrefslogtreecommitdiff
path: root/core/_preload.odin
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2017-12-21 21:05:53 +0000
committergingerBill <bill@gingerbill.org>2017-12-21 21:05:53 +0000
commitb449305cc1f8bd362d77d6356e5e272495aaaa44 (patch)
tree0f133fa64855db93a79533123bd3189888e93f90 /core/_preload.odin
parent49bee6bad0aaaca9a97d1b648f1d87121122f2a5 (diff)
Fix `free_map`
Diffstat (limited to 'core/_preload.odin')
-rw-r--r--core/_preload.odin1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/_preload.odin b/core/_preload.odin
index 600f6b696..0374075d2 100644
--- a/core/_preload.odin
+++ b/core/_preload.odin
@@ -489,7 +489,6 @@ free_map :: proc(m: $T/map[$K]$V, loc := #caller_location) {
raw := transmute(raw.Map)m;
free_dynamic_array(raw.hashes, loc);
free_ptr(raw.entries.data, loc);
- free_ptr(raw.internal, loc);
}
free :: proc[