aboutsummaryrefslogtreecommitdiff
path: root/base/runtime
diff options
context:
space:
mode:
authorFaker-09 <shrybman@teksavvy.com>2026-01-13 15:25:17 -0500
committerGitHub <noreply@github.com>2026-01-13 21:25:17 +0100
commit9d72025a0b6f7b94682662316b892ece865ad8aa (patch)
tree86ae99c3ae6af4d82fa0ef16e2b7b7e969575216 /base/runtime
parent11afefeedc3258f6bca822ef33e5908f3cf6592c (diff)
Remove duplicate assingment of array.allocator = allocator in _make_dynamic_array_len_cap(...) (#6095)
Diffstat (limited to 'base/runtime')
-rw-r--r--base/runtime/core_builtin.odin1
1 files changed, 0 insertions, 1 deletions
diff --git a/base/runtime/core_builtin.odin b/base/runtime/core_builtin.odin
index 6fecbaad9..6528fdd1b 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
}