File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -338,7 +338,7 @@ pub struct Parser {
338
338
/// Used to determine the path to externally loaded source files
339
339
mod_path_stack : @mut ~[ @str ] ,
340
340
/// Stack of spans of open delimiters. Used for error message.
341
- open_braces : @mut ~[ @ Span ]
341
+ open_braces : @mut ~[ Span ]
342
342
}
343
343
344
344
#[ unsafe_destructor]
@@ -2026,7 +2026,7 @@ impl Parser {
2026
2026
match * self . token {
2027
2027
token:: EOF => {
2028
2028
for sp in self . open_braces . iter ( ) {
2029
- self . span_note ( * * sp, "Did you mean to close this delimiter?" ) ;
2029
+ self . span_note ( * sp, "Did you mean to close this delimiter?" ) ;
2030
2030
}
2031
2031
// There shouldn't really be a span, but it's easier for the test runner
2032
2032
// if we give it one
@@ -2036,7 +2036,7 @@ impl Parser {
2036
2036
let close_delim = token:: flip_delimiter ( & * self . token ) ;
2037
2037
2038
2038
// Parse the open delimiter.
2039
- ( * self . open_braces ) . push ( @ * self . span ) ;
2039
+ ( * self . open_braces ) . push ( * self . span ) ;
2040
2040
let mut result = ~[ parse_any_tt_tok ( self ) ] ;
2041
2041
2042
2042
let trees =
You can’t perform that action at this time.
0 commit comments