diff options
| author | Daniel Gavin <danielgavin5@hotmail.com> | 2021-04-28 14:08:49 +0200 |
|---|---|---|
| committer | Daniel Gavin <danielgavin5@hotmail.com> | 2021-04-28 14:08:49 +0200 |
| commit | bd4e3b3990593d10def18984101ae68f275eefea (patch) | |
| tree | 75616fc8573854b4f0c518869f03bb7f7c97f001 /src/testing | |
| parent | ab77d1bf51541b745388fce1df64f62fea664906 (diff) | |
started on untyped proc overloading handling
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 9562bc4..001b8cf 100644 --- a/src/testing/testing.odin +++ b/src/testing/testing.odin @@ -35,7 +35,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(5), context.temp_allocator); + common.scratch_allocator_init(src.document.allocator, mem.kilobytes(20), context.temp_allocator); server.document_refresh(src.document, &src.config, nil); |