More minor stylization changes (remove unneeded parentheses)

This commit is contained in:
gingerBill
2021-06-14 11:34:31 +01:00
parent 6f745677b4
commit 9f8a63cb43
5 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -362,7 +362,7 @@ __dynamic_map_erase :: proc(using h: Map_Header, fr: Map_Find_Result) #no_bounds
curr := __dynamic_map_get_entry(h, fr.entry_index);
prev.next = curr.next;
}
if (fr.entry_index == m.entries.len-1) {
if fr.entry_index == m.entries.len-1 {
// NOTE(bill): No need to do anything else, just pop
} else {
old := __dynamic_map_get_entry(h, fr.entry_index);