about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAriel Ben-Yehuda <ariel.byd@gmail.com>2017-05-23 22:01:51 +0300
committerAriel Ben-Yehuda <ariel.byd@gmail.com>2017-05-28 10:43:25 +0300
commit6adfbaf2d38df2e39c94d07dd6563da92b732049 (patch)
tree3a4cc7dac5e1cb1a0d4c4c4fdb48dcead7ed3330
parent162bc513fbc15066d04f865da232702fefc7b923 (diff)
downloadrust-6adfbaf2d38df2e39c94d07dd6563da92b732049.tar.gz
rust-6adfbaf2d38df2e39c94d07dd6563da92b732049.zip
increase macro recursion limit
-rw-r--r--src/librustc/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/lib.rs b/src/librustc/lib.rs
index d1d9dd4853d..2a877aca53b 100644
--- a/src/librustc/lib.rs
+++ b/src/librustc/lib.rs
@@ -47,7 +47,7 @@
 #![cfg_attr(stage0, feature(staged_api))]
 #![cfg_attr(stage0, feature(loop_break_value))]
 
-#![recursion_limit="128"]
+#![recursion_limit="192"]
 
 extern crate arena;
 extern crate core;