diff options
| author | Eduard Burtescu <edy.burt@gmail.com> | 2014-03-09 16:54:34 +0200 |
|---|---|---|
| committer | Eduard Burtescu <edy.burt@gmail.com> | 2014-03-17 09:53:07 +0200 |
| commit | 90cbe0cad20d2736c7e7ebbffb2c2d84016f9340 (patch) | |
| tree | a0bee02f6e23b5b27a4606fbed7b32cd631b3e58 /src/libsyntax/parse/attr.rs | |
| parent | 555a239301cabeb20e45c9c3c3cf98588b8ec916 (diff) | |
| download | rust-90cbe0cad20d2736c7e7ebbffb2c2d84016f9340.tar.gz rust-90cbe0cad20d2736c7e7ebbffb2c2d84016f9340.zip | |
De-@ ParseSess uses.
Diffstat (limited to 'src/libsyntax/parse/attr.rs')
| -rw-r--r-- | src/libsyntax/parse/attr.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/attr.rs b/src/libsyntax/parse/attr.rs index 0a74c7ca821..399648ef1d8 100644 --- a/src/libsyntax/parse/attr.rs +++ b/src/libsyntax/parse/attr.rs @@ -28,7 +28,7 @@ pub trait ParserAttr { fn parse_optional_meta(&mut self) -> Vec<@ast::MetaItem> ; } -impl ParserAttr for Parser { +impl<'a> ParserAttr for Parser<'a> { // Parse attributes that appear before an item fn parse_outer_attributes(&mut self) -> Vec<ast::Attribute> { let mut attrs: Vec<ast::Attribute> = Vec::new(); |
