summaryrefslogtreecommitdiff
path: root/src/parse/lex.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/lex.hpp')
-rw-r--r--src/parse/lex.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/lex.hpp b/src/parse/lex.hpp
index 55af4c56..7ff0003e 100644
--- a/src/parse/lex.hpp
+++ b/src/parse/lex.hpp
@@ -42,7 +42,7 @@ class Lexer:
::std::ifstream m_istream;
bool m_last_char_valid;
Codepoint m_last_char;
- Token m_next_token; // Used when lexing generated two tokens
+ ::std::vector<Token> m_next_tokens;
Ident::Hygiene m_hygiene;
public: