diff options
Diffstat (limited to 'src/libsyntax/parse/attr.rs')
| -rw-r--r-- | src/libsyntax/parse/attr.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/parse/attr.rs b/src/libsyntax/parse/attr.rs index 505e543a3fb..0950d6082e7 100644 --- a/src/libsyntax/parse/attr.rs +++ b/src/libsyntax/parse/attr.rs @@ -11,7 +11,7 @@ use attr; use ast; use codemap::{spanned, Spanned, mk_sp, Span}; -use parse::common::*; //resolve bug? +use parse::common::SeqSep; use parse::PResult; use parse::token; use parse::parser::{Parser, TokenType}; @@ -200,7 +200,7 @@ impl<'a> Parser<'a> { fn parse_meta_seq(&mut self) -> PResult<'a, Vec<P<ast::MetaItem>>> { self.parse_unspanned_seq(&token::OpenDelim(token::Paren), &token::CloseDelim(token::Paren), - seq_sep_trailing_allowed(token::Comma), + SeqSep::trailing_allowed(token::Comma), |p: &mut Parser<'a>| p.parse_meta_item()) } } |
