Skip to content

Commit

Permalink
Auto merge of #41676 - sirideain:expand-macro-recursion-limit, r=jsey…
Browse files Browse the repository at this point in the history
…fried

Increase macro recursion limit to 1024

Fixes #22552
  • Loading branch information
bors committed May 7, 2017
2 parents 5b31bf8 + 3008f53 commit 0c2f34d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libsyntax/ext/expand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1038,7 +1038,7 @@ impl<'feat> ExpansionConfig<'feat> {
ExpansionConfig {
crate_name: crate_name,
features: None,
recursion_limit: 64,
recursion_limit: 1024,
trace_mac: false,
should_test: false,
single_step: false,
Expand Down

0 comments on commit 0c2f34d

Please sign in to comment.