Skip to content

Commit c24b192

Browse files
committed
rebasing fix
1 parent 5d971ab commit c24b192

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_save_analysis/span_utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ impl<'a> SpanUtils<'a> {
9191

9292
fn span_to_tts(&self, span: Span) -> Vec<TokenTree> {
9393
let srdr = self.retokenise_span(span);
94-
let mut p = Parser::new(&self.sess.parse_sess, Box::new(srdr));
94+
let mut p = Parser::new(&self.sess.parse_sess, Box::new(srdr), None, false);
9595
p.parse_all_token_trees().expect("Couldn't re-parse span")
9696
}
9797

0 commit comments

Comments
 (0)