diff options
| author | Daniel Gavin <danielgavin5@hotmail.com> | 2022-04-15 19:56:20 +0200 |
|---|---|---|
| committer | Daniel Gavin <danielgavin5@hotmail.com> | 2022-04-15 19:56:20 +0200 |
| commit | 1ff3cccc05724f1a2485edbbace6ac540c4cb485 (patch) | |
| tree | f72ff54ba467041a0c2db247d46efc53eeb37f2c /src/testing | |
| parent | b4720f71d63f08ec6a734fb79fb0816756484ac6 (diff) | |
Add proper multi_pointer support and fix range half range op
Diffstat (limited to 'src/testing')
| -rw-r--r-- | src/testing/testing.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testing/testing.odin b/src/testing/testing.odin index 356c457..a824d87 100644 --- a/src/testing/testing.odin +++ b/src/testing/testing.odin @@ -36,7 +36,7 @@ setup :: proc(src: ^Source) { src.document.allocator = new(common.Scratch_Allocator); src.document.package_name = "test"; - common.scratch_allocator_init(src.document.allocator, mem.kilobytes(200), context.temp_allocator); + common.scratch_allocator_init(src.document.allocator, mem.Kilobyte * 200, context.temp_allocator); //no unicode in tests currently current, last: u8; |