From 22f6f658763fb1fe31ca1c02448c81757577dd36 Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Thu, 18 Feb 2021 14:26:20 -0600 Subject: [PATCH] updated string_stream_test --- tests/string_stream_test.onyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/string_stream_test.onyx b/tests/string_stream_test.onyx index 55a10a63..8fe127b2 100644 --- a/tests/string_stream_test.onyx +++ b/tests/string_stream_test.onyx @@ -9,7 +9,7 @@ main :: proc (args: [] cstr) { sreader := io.reader_make(^sstream); for i: 0 .. 2 { - word := io.read_word(^sreader, context.temp_allocator); + word := io.read_word(^sreader, allocator=context.temp_allocator); println(word); } @@ -21,4 +21,4 @@ main :: proc (args: [] cstr) { println(a); println(b); println(a + b); -} \ No newline at end of file +} -- 2.25.1