diff options
| author | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2013-02-25 06:19:44 -0800 |
|---|---|---|
| committer | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2013-02-25 06:19:44 -0800 |
| commit | 5b9e110eab9c30428e99995a0adbec82857e3a1a (patch) | |
| tree | eee469f01c305aa346c070a430336852d5900753 /src/libsyntax/parse | |
| parent | b26d434ad126c1ee35ca63c02ff3d9a243e3a00a (diff) | |
| download | rust-5b9e110eab9c30428e99995a0adbec82857e3a1a.tar.gz rust-5b9e110eab9c30428e99995a0adbec82857e3a1a.zip | |
libsyntax: Convert ast::attribute_ to store a @meta_item
Diffstat (limited to 'src/libsyntax/parse')
| -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 c0c97a0b9eb..87ecf6a9567 100644 --- a/src/libsyntax/parse/attr.rs +++ b/src/libsyntax/parse/attr.rs @@ -72,7 +72,7 @@ impl parser_attr for Parser { self.expect(token::RBRACKET); let mut hi = self.span.hi; return spanned(lo, hi, ast::attribute_ { style: style, - value: *meta_item, + value: meta_item, is_sugared_doc: false }); } |
