diff options
| author | Ariel Ben-Yehuda <ariel.byd@gmail.com> | 2017-05-23 22:01:51 +0300 |
|---|---|---|
| committer | Ariel Ben-Yehuda <ariel.byd@gmail.com> | 2017-05-28 10:43:25 +0300 |
| commit | 6adfbaf2d38df2e39c94d07dd6563da92b732049 (patch) | |
| tree | 3a4cc7dac5e1cb1a0d4c4c4fdb48dcead7ed3330 | |
| parent | 162bc513fbc15066d04f865da232702fefc7b923 (diff) | |
| download | rust-6adfbaf2d38df2e39c94d07dd6563da92b732049.tar.gz rust-6adfbaf2d38df2e39c94d07dd6563da92b732049.zip | |
increase macro recursion limit
| -rw-r--r-- | src/librustc/lib.rs | 2 |
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; |
