diff options
| author | Nicholas Nethercote <nnethercote@mozilla.com> | 2020-08-08 12:05:10 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <nnethercote@mozilla.com> | 2020-08-08 12:05:10 +1000 |
| commit | 96dd044827f80b7de3cc1501a80597f41cc388e0 (patch) | |
| tree | 78443b5808356c364a65afed13137bf1ab3ae7bc /src/librustc_plugin_impl | |
| parent | 3dc8a3695825a8f7c5375d2560bc58573326699d (diff) | |
| download | rust-96dd044827f80b7de3cc1501a80597f41cc388e0.tar.gz rust-96dd044827f80b7de3cc1501a80597f41cc388e0.zip | |
Increase `recursion_limit` in `librustc_plugin_impl`.
To avoid rustdoc problems.
Diffstat (limited to 'src/librustc_plugin_impl')
| -rw-r--r-- | src/librustc_plugin_impl/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustc_plugin_impl/lib.rs b/src/librustc_plugin_impl/lib.rs index 10712eb60b9..1eb65dd96ba 100644 --- a/src/librustc_plugin_impl/lib.rs +++ b/src/librustc_plugin_impl/lib.rs @@ -8,6 +8,7 @@ #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")] #![feature(nll)] +#![recursion_limit = "256"] use rustc_lint::LintStore; |
