diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2013-12-30 14:40:31 -0800 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2014-01-02 14:16:07 -0800 |
| commit | 425a140485dc3ba70c4e30e10cd8d5fd92a458c5 (patch) | |
| tree | f570e95e025778143c9ba017c6c76a57f61b98d0 /src/libsyntax/parse/mod.rs | |
| parent | f499d365ada01a23bd046bac9b1bef7ccdb9fa8c (diff) | |
| download | rust-425a140485dc3ba70c4e30e10cd8d5fd92a458c5.tar.gz rust-425a140485dc3ba70c4e30e10cd8d5fd92a458c5.zip | |
libsyntax: De-`@mut` `quote_depth` in the parser
Diffstat (limited to 'src/libsyntax/parse/mod.rs')
| -rw-r--r-- | src/libsyntax/parse/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/mod.rs b/src/libsyntax/parse/mod.rs index 1200c5db611..a1f770a5fde 100644 --- a/src/libsyntax/parse/mod.rs +++ b/src/libsyntax/parse/mod.rs @@ -175,7 +175,7 @@ pub fn parse_tts_from_source_str( name, source ); - *p.quote_depth += 1u; + p.quote_depth += 1u; // right now this is re-creating the token trees from ... token trees. maybe_aborted(p.parse_all_token_trees(),p) } |
