Fix MSVC errors

This commit is contained in:
2025-12-15 21:48:30 +00:00
parent 05b7cfbbea
commit e16abc2459
3 changed files with 4 additions and 6 deletions

View File

@@ -173,7 +173,7 @@ TestFuncResult test_i32_array_append_alloc(void) {
u64 index = 0;
b8 running = true;
while (running) {
i32 num = (i32)index;
num = (i32)index;
arr_ptr = wapp_array_append_alloc(i32, I32Array, &allocator, &array2, &num);
++index;