Skip to content

Commit 0b56261

Browse files
committed
Tweak parse_asm_args.
It doesn't need a `Parser` and a `ParseSess`, because the former contains the latter.
1 parent 050610e commit 0b56261

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parse/macros/asm.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ use crate::rewrite::RewriteContext;
77
pub(crate) fn parse_asm(context: &RewriteContext<'_>, mac: &ast::MacCall) -> Option<AsmArgs> {
88
let ts = mac.args.tokens.clone();
99
let mut parser = super::build_parser(context, ts);
10-
parse_asm_args(&mut parser, context.parse_sess.inner(), mac.span(), false).ok()
10+
parse_asm_args(&mut parser, mac.span(), false).ok()
1111
}

0 commit comments

Comments
 (0)