diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2014-02-02 00:09:11 +1100 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2014-02-02 02:59:04 +1100 |
| commit | ec4b456b26cd019b8b2a4a8a3f9fa9841904bf09 (patch) | |
| tree | 31fea04fef0af0ad23812591ade11c7a389f7847 /src/libsyntax | |
| parent | e39cd20a4311f6e1377a01462cda5a89a4e67c15 (diff) | |
| download | rust-ec4b456b26cd019b8b2a4a8a3f9fa9841904bf09.tar.gz rust-ec4b456b26cd019b8b2a4a8a3f9fa9841904bf09.zip | |
rustc: Remove the vstore handling of @str and @[].
Diffstat (limited to 'src/libsyntax')
| -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 aa33edf28f5..8a3da581607 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -2825,7 +2825,7 @@ impl Parser { let hi = self.last_span.hi; return @ast::Pat { id: ast::DUMMY_NODE_ID, - node: sub, + node: PatUniq(sub), span: mk_sp(lo, hi) } } |
