summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/parse/lex.cpp4
-rw-r--r--src/parse/tokenstream.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/parse/lex.cpp b/src/parse/lex.cpp
index 69d2b1c0..1fa0729f 100644
--- a/src/parse/lex.cpp
+++ b/src/parse/lex.cpp
@@ -15,8 +15,8 @@
#include <typeinfo>
#include <algorithm> // std::count
#include <cctype>
-#define TRACE_CHARS
-#define TRACE_RAW_TOKENS
+//#define TRACE_CHARS
+//#define TRACE_RAW_TOKENS
Lexer::Lexer(const ::std::string& filename):
m_path(filename.c_str()),
diff --git a/src/parse/tokenstream.cpp b/src/parse/tokenstream.cpp
index 7b8fa532..901312a3 100644
--- a/src/parse/tokenstream.cpp
+++ b/src/parse/tokenstream.cpp
@@ -12,7 +12,7 @@
const bool DEBUG_PRINT_TOKENS = false;
//const bool DEBUG_PRINT_TOKENS = true;
//#define DEBUG_PRINT_TOKENS debug_enabled("Lexer Tokens")
-#define FULL_TRACE
+//#define FULL_TRACE
TokenStream::TokenStream():
m_cache_valid(false)