Skip to content

Commit 77d9e33

Browse files
committed
Fix for
1 parent a8e1b73 commit 77d9e33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/describe.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ pub enum SubBlock {
6565
pub fn describe<'a>(cx: &'a mut base::ExtCtxt, sp: codemap::Span,
6666
name: ast::Ident, tokens: Vec<tokenstream::TokenTree>) -> Box<base::MacResult + 'a> {
6767
// Parse a full DescribeState from the input, emitting errors if used incorrectly.
68-
let state: DescribeState = Parse::parse(&mut parse::tts_to_parser(cx.parse_sess(), tokens, cx.cfg().clone()), (sp, &mut*cx, Some(name)));
68+
let state: DescribeState = Parse::parse(&mut parse::tts_to_parser(cx.parse_sess(), tokens), (sp, &mut*cx, Some(name)));
6969

7070
// Export the new module.
7171
base::MacEager::items(SmallVector::one(state.generate(sp, cx, None)))

0 commit comments

Comments
 (0)