diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-12-16 17:46:29 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-12-16 17:46:29 +0530 |
| commit | b0b9a556df908d8247d38241ad4521a00a8b6cf3 (patch) | |
| tree | 7d656b6a01b16eb77017db0a87a4d59e0bc92b01 /src/libsyntax/parse | |
| parent | 7aabc66a850004c1b039032ac23be1b43a064bf1 (diff) | |
| parent | 2dcd791d46523e75da5c594033383e90c08d4ae3 (diff) | |
| download | rust-b0b9a556df908d8247d38241ad4521a00a8b6cf3.tar.gz rust-b0b9a556df908d8247d38241ad4521a00a8b6cf3.zip | |
Rollup merge of #30388 - DanielJCampbell:macro-ident-spans, r=nrc
r? @nrc
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/token.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs index 17b7d8dbaec..b942954c187 100644 --- a/src/libsyntax/parse/token.rs +++ b/src/libsyntax/parse/token.rs @@ -377,7 +377,7 @@ pub enum Nonterminal { NtPat(P<ast::Pat>), NtExpr(P<ast::Expr>), NtTy(P<ast::Ty>), - NtIdent(Box<ast::Ident>, IdentStyle), + NtIdent(Box<ast::SpannedIdent>, IdentStyle), /// Stuff inside brackets for attributes NtMeta(P<ast::MetaItem>), NtPath(Box<ast::Path>), |
