diff options
author | John Hodge <tpg@mutabah.net> | 2016-07-14 00:08:59 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-07-14 00:08:59 +0800 |
commit | 87f293aeef783ecafef49ed280709d125f9c1f4f (patch) | |
tree | aa6e4e1386f1083cc1f94167dfb00b1b8756cbb9 /src/main.cpp | |
parent | e353e6f88b4a694e1e93a1f09c84d086cc4a826d (diff) | |
download | mrust-87f293aeef783ecafef49ed280709d125f9c1f4f.tar.gz |
Macro Rules - Rewrite, take 3 - Incomplete
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 85307663..38b060fb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -25,9 +25,9 @@ int g_debug_indent_level = 0; bool debug_enabled()
{
- //return true;
+ return true;
//return g_cur_phase != "Parse";
- return g_cur_phase != "Parse" && g_cur_phase != "Expand";
+ //return g_cur_phase != "Parse" && g_cur_phase != "Expand";
//return g_cur_phase != "Parse" && g_cur_phase != "Expand" && g_cur_phase != "Resolve";
}
::std::ostream& debug_output(int indent, const char* function)
|