From acf0e16cbb884f383864f735256c3350e0163613 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Sun, 18 Feb 2024 18:28:54 +0800 Subject: [PATCH] Update lexer.h --- include/pocketpy/lexer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pocketpy/lexer.h b/include/pocketpy/lexer.h index ce911c7f..97fed808 100644 --- a/include/pocketpy/lexer.h +++ b/include/pocketpy/lexer.h @@ -104,7 +104,7 @@ struct Lexer { const char* curr_char; int current_line = 1; std::vector nexts; - stack indents; + stack_no_copy> indents; int brackets_level = 0; bool used = false;