aboutsummaryrefslogtreecommitdiffstats
path: root/src/bootstrap/lexer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bootstrap/lexer.c')
-rw-r--r--src/bootstrap/lexer.c2
1 files changed, 1 insertions, 1 deletions
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
51tokenize(StringView sv) { 51tokenize(StringView sv) {
52 // NOTE: Not allocating any memory for now, but we are limited by a maximum 52 // NOTE: Not allocating any memory for now, but we are limited by a maximum
53 // number of tokens we can process. 53 // number of tokens we can process.
54 #define TOKENS_BUF_SIZE 1024 54 #define TOKENS_BUF_SIZE KB(64)
55 static Token tokens_buf[TOKENS_BUF_SIZE]; 55 static Token tokens_buf[TOKENS_BUF_SIZE];
56 56
57 // Clear buffer. 57 // Clear buffer.