Use a smaller size for the lexer buffer

Large sizes are more efficient when it's actually buffered,
but most of the time `mmap` is used instead, and the extra size
just slows down allocation of lexer states.
This commit is contained in:
Rangi42
2024-05-17 20:59:42 -04:00
parent 352551d4f8
commit 39e9315e8a
2 changed files with 4 additions and 2 deletions

View File

@@ -11,6 +11,7 @@
#include <inttypes.h>
#include <limits.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unordered_map>