Minor changes - change vector to deque in lexer as this needs to behave like a queue

This commit is contained in:
2025-10-03 21:08:43 +03:00
committed by Emin Arslan
parent ec59b49c32
commit 00fdc84d22
4 changed files with 15 additions and 15 deletions

View File

@@ -11,7 +11,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(HEADER_FILES src/include/lex.hpp)
set(SOURCE_FILES src/lex.cpp)
set(CXX_WARNING_FLAGS -Wall -Wextra -Wpedantic -pedantic -Werror)
set(CXX_WARNING_FLAGS -Wall -Wextra -Wpedantic -pedantic)
# we're not actually shipping a library yet,
# this is so we don't have to compile twice for main and tests.