diff options
Diffstat (limited to 'src/parse')
-rw-r--r-- | src/parse/lex.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/parse/lex.cpp b/src/parse/lex.cpp index c5b5c11f..ee453579 100644 --- a/src/parse/lex.cpp +++ b/src/parse/lex.cpp @@ -20,8 +20,9 @@ #include <typeinfo> #include <algorithm> // std::count -//const bool DEBUG_PRINT_TOKENS = false; -const bool DEBUG_PRINT_TOKENS = true; +const bool DEBUG_PRINT_TOKENS = false; +//const bool DEBUG_PRINT_TOKENS = true; +//#define DEBUG_PRINT_TOKENS debug_enabled("Lexer Tokens") Lexer::Lexer(const ::std::string& filename): m_path(filename.c_str()), |