Fix append_fixed_capacity_elems

This commit is contained in:
gingerBill
2026-03-15 11:42:24 +00:00
parent c6772dfd06
commit 310def1e71

View File

@@ -883,7 +883,7 @@ append_fixed_capacity_elems :: proc "contextless" (array: ^$T/[dynamic; $N]$E, #
when size_of(E) != 0 {
for i in 0..<n {
#no_bounds_check raw.data[i] = args[i]
#no_bounds_check raw.data[raw.len + i] = args[i]
}
}