aboutsummaryrefslogtreecommitdiff
path: root/core/runtime
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2020-11-29 12:52:30 +0000
committergingerBill <bill@gingerbill.org>2020-11-29 12:52:30 +0000
commit2e0fd34e59218ea942e4a378b689dc7cd3f844fa (patch)
tree08e1befe5c4b1026686a821b535352cabe75008f /core/runtime
parent9959a069fcc016aa9d01f90cc33bf9dd57f9b1ae (diff)
Keep -vet happy
Diffstat (limited to 'core/runtime')
-rw-r--r--core/runtime/dynamic_map_internal.odin1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/runtime/dynamic_map_internal.odin b/core/runtime/dynamic_map_internal.odin
index cef33cbeb..38618ea34 100644
--- a/core/runtime/dynamic_map_internal.odin
+++ b/core/runtime/dynamic_map_internal.odin
@@ -305,7 +305,6 @@ __dynamic_map_find :: proc(using h: Map_Header, hash: Map_Hash) -> Map_Find_Resu
__dynamic_map_add_entry :: proc(using h: Map_Header, hash: Map_Hash, loc := #caller_location) -> int {
prev := m.entries.len;
- prev_data := m.entries.data;
c := __dynamic_array_append_nothing(&m.entries, entry_size, entry_align, loc);
if c != prev {
end := __dynamic_map_get_entry(h, c-1);