diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-05-16 10:15:33 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-06-11 09:51:37 -0700 |
| commit | 54c2a1e1ce7f32576f0692a1de3fe2763d13bac9 (patch) | |
| tree | 62c34c3c945986ccb3e409df57ed0579a2ddcf9a /src/libsyntax/parse | |
| parent | 53ad426e92f8099a701f3f54c02dc8f069f5939a (diff) | |
| download | rust-54c2a1e1ce7f32576f0692a1de3fe2763d13bac9.tar.gz rust-54c2a1e1ce7f32576f0692a1de3fe2763d13bac9.zip | |
rustc: Move the AST from @T to Gc<T>
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index fad75ef9278..8083bf41706 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -277,8 +277,8 @@ fn maybe_append(lhs: Vec<Attribute> , rhs: Option<Vec<Attribute> >) struct ParsedItemsAndViewItems { attrs_remaining: Vec<Attribute>, view_items: Vec<ViewItem>, - items: Vec<@Item>, - foreign_items: Vec<@ForeignItem> + items: Vec<Gc<Item>>, + foreign_items: Vec<Gc<ForeignItem>> } /* ident is handled by common.rs */ |
