From 4673fde605090320fbab227e56bb085eec97362a Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Sun, 10 Oct 2021 12:11:45 +0200 Subject: Add boolean primitives and more (better) tests --- src/bootstrap/lexer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bootstrap/lexer.c') diff --git a/src/bootstrap/lexer.c b/src/bootstrap/lexer.c index dd5c0f2..b03db77 100644 --- a/src/bootstrap/lexer.c +++ b/src/bootstrap/lexer.c @@ -51,7 +51,7 @@ Tokens tokenize(StringView sv) { // NOTE: Not allocating any memory for now, but we are limited by a maximum // number of tokens we can process. - #define TOKENS_BUF_SIZE 1024 + #define TOKENS_BUF_SIZE KB(64) static Token tokens_buf[TOKENS_BUF_SIZE]; // Clear buffer. -- cgit v1.2.1