Strip semicolons in core which were missing

This commit is contained in:
gingerBill
2021-09-08 13:12:38 +01:00
parent d4f5ef046d
commit ca33cb990b
27 changed files with 1296 additions and 1287 deletions
+4 -1
View File
@@ -168,7 +168,10 @@ buffer_from_slice :: proc "contextless" (backing: $T/[]$E) -> [dynamic]E {
data = raw_data(backing),
len = 0,
cap = len(backing),
allocator = nil_allocator(),
allocator = Allocator{
procedure = nil_allocator_proc,
data = nil,
},
}
}