We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
parse_asm_args
1 parent 050610e commit 0b56261Copy full SHA for 0b56261
src/parse/macros/asm.rs
@@ -7,5 +7,5 @@ use crate::rewrite::RewriteContext;
7
pub(crate) fn parse_asm(context: &RewriteContext<'_>, mac: &ast::MacCall) -> Option<AsmArgs> {
8
let ts = mac.args.tokens.clone();
9
let mut parser = super::build_parser(context, ts);
10
- parse_asm_args(&mut parser, context.parse_sess.inner(), mac.span(), false).ok()
+ parse_asm_args(&mut parser, mac.span(), false).ok()
11
}
0 commit comments