diff options
| author | Eduard Burtescu <edy.burt@gmail.com> | 2014-09-17 19:01:33 +0300 |
|---|---|---|
| committer | Eduard Burtescu <edy.burt@gmail.com> | 2014-09-18 14:36:18 +0300 |
| commit | 07f4fda598f3fa3e7980f7d97621879fbbf00750 (patch) | |
| tree | ed0c76fbf0a9428a73c73260b9035aed0323c313 /src/libsyntax/parse/parser.rs | |
| parent | 49dd8e8c366f492d3ba3d0d2fd9d943f92073a18 (diff) | |
| download | rust-07f4fda598f3fa3e7980f7d97621879fbbf00750.tar.gz rust-07f4fda598f3fa3e7980f7d97621879fbbf00750.zip | |
syntax: use an index in CodeMap instead of Gc for ExpnInfo.
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index ff4fd41fbd7..7c0564c28d1 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -3590,7 +3590,7 @@ impl<'a> Parser<'a> { let span_with_semi = Span { lo: span.lo, hi: self.last_span.hi, - expn_info: span.expn_info, + expn_id: span.expn_id, }; stmts.push(P(Spanned { node: StmtSemi(e, stmt_id), |
