about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
diff options
context:
space:
mode:
authorJonathan Turner <jturner@mozilla.com>2016-06-21 19:57:03 -0400
committerJonathan Turner <jturner@mozilla.com>2016-06-23 08:07:35 -0400
commit2829fbc63814d02359e3d93d16f7ea7ef748162e (patch)
tree9071c185880e122eab5976c1e543c43a751603ce /src/libsyntax/parse/parser.rs
parent6ae350213485f7c917113f3916e58c51cef97a76 (diff)
downloadrust-2829fbc63814d02359e3d93d16f7ea7ef748162e.tar.gz
rust-2829fbc63814d02359e3d93d16f7ea7ef748162e.zip
Address comments and fix travis warning
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
-rw-r--r--src/libsyntax/parse/parser.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs
index 5c29c6108e9..a8597c99a56 100644
--- a/src/libsyntax/parse/parser.rs
+++ b/src/libsyntax/parse/parser.rs
@@ -6002,8 +6002,8 @@ impl<'a> Parser<'a> {
             // single-variant-enum... :
             let m = Mac_ { path: pth, tts: tts, ctxt: EMPTY_CTXT };
             let m: ast::Mac = codemap::Spanned { node: m,
-                                                    span: mk_sp(mac_lo,
-                                                                self.last_span.hi) };
+                                                 span: mk_sp(mac_lo,
+                                                             self.last_span.hi) };
 
             if delim != token::Brace {
                 if !self.eat(&token::Semi) {