summaryrefslogtreecommitdiffhomepage
path: root/test-lexer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test-lexer.cpp')
-rw-r--r--test-lexer.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/test-lexer.cpp b/test-lexer.cpp
index 651dfae..b0706df 100644
--- a/test-lexer.cpp
+++ b/test-lexer.cpp
@@ -3,6 +3,7 @@
#include "lexer.h"
#include "grammer.h"
#include "minicc.h"
+#include "debug.h"
#include <boost/algorithm/string.hpp>
@@ -20,7 +21,9 @@
class Test: public ::testing::Test {
protected:
- Test(){}
+ Test(){
+ debug = false;
+ }
~Test() override {}
};