summaryrefslogtreecommitdiff
path: root/src/include/debug.hpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-02-27 15:06:21 +0800
committerJohn Hodge <tpg@mutabah.net>2016-02-27 15:06:21 +0800
commit85a756b47e55373497a20f1d19a7b4eec12ce928 (patch)
treed0668b3772065c5f4e15c5a5dbbe4d05b80efc4f /src/include/debug.hpp
parent404da3f27a39e0e0b1de17e0175b4da3d4287817 (diff)
downloadmrust-85a756b47e55373497a20f1d19a7b4eec12ce928.tar.gz
Parse - Support hugely nested parens
Diffstat (limited to 'src/include/debug.hpp')
-rw-r--r--src/include/debug.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/debug.hpp b/src/include/debug.hpp
index d11af652..b8c54440 100644
--- a/src/include/debug.hpp
+++ b/src/include/debug.hpp
@@ -6,7 +6,7 @@
extern int g_debug_indent_level;
#ifndef DISABLE_DEBUG
-#define INDENT() do { g_debug_indent_level += 1; assert(g_debug_indent_level<100); } while(0)
+#define INDENT() do { g_debug_indent_level += 1; assert(g_debug_indent_level<300); } while(0)
#define UNINDENT() do { g_debug_indent_level -= 1; } while(0)
#define DEBUG(ss) do{ if(debug_enabled()) { debug_output(g_debug_indent_level, __FUNCTION__) << ss << ::std::endl; } } while(0)
#else