summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-05-24 15:12:25 +0800
committerJohn Hodge <tpg@mutabah.net>2016-05-24 15:12:25 +0800
commitdd32dcc71299a489f18dc9d1247104cb81b6b5dd (patch)
treecd050481454e65f1929cb28c658bc8c2c678b00a /src/main.cpp
parentba6f4df093bc8bfc330b2205279f3f0fca225e77 (diff)
downloadmrust-dd32dcc71299a489f18dc9d1247104cb81b6b5dd.tar.gz
HIR Expand Type - Convert to use a generic HIR visitor
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index a02fbac6..b519f1fb 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -25,7 +25,8 @@ int g_debug_indent_level = 0;
bool debug_enabled()
{
//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)
{