Update lexer.h

This commit is contained in:
blueloveTH 2024-02-18 18:28:54 +08:00
parent 844529f405
commit acf0e16cbb

View File

@ -104,7 +104,7 @@ struct Lexer {
const char* curr_char; const char* curr_char;
int current_line = 1; int current_line = 1;
std::vector<Token> nexts; std::vector<Token> nexts;
stack<int> indents; stack_no_copy<int, pod_vector<int>> indents;
int brackets_level = 0; int brackets_level = 0;
bool used = false; bool used = false;