diff options
| author | Laytan <laytanlaats@hotmail.com> | 2026-01-13 21:29:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-13 21:29:41 +0100 |
| commit | 792e6c75ee08ba62ca5578ec3ec273e90a94668b (patch) | |
| tree | 03d35fbebe482022a920e1b63e59ed5c0490f684 /base/runtime | |
| parent | 4af4b2f5757a8d45aba6bf5db5c99faf63150173 (diff) | |
| parent | 9d72025a0b6f7b94682662316b892ece865ad8aa (diff) | |
Merge branch 'master' into nbio
Diffstat (limited to 'base/runtime')
| -rw-r--r-- | base/runtime/core_builtin.odin | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/base/runtime/core_builtin.odin b/base/runtime/core_builtin.odin index 42bf13478..02278a356 100644 --- a/base/runtime/core_builtin.odin +++ b/base/runtime/core_builtin.odin @@ -433,7 +433,6 @@ _make_dynamic_array_len_cap :: proc(array: ^Raw_Dynamic_Array, size_of_elem, ali array.data = raw_data(data) array.len = 0 if use_zero else len array.cap = 0 if use_zero else cap - array.allocator = allocator return } |