inferred leading comptime params

This commit is contained in:
2026-07-12 17:02:12 +02:00
parent 0706188b98
commit 2dea7711f2
11 changed files with 769 additions and 84 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ realloc func($T type, allocator Allocator, memory []mut T, new_count usize) []mu
return memory
}
if new_count == 0 {
free(T, allocator, memory)
free(allocator, memory)
return _empty_slice(T, 0)
}