We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c8690c commit 2c3ae88Copy full SHA for 2c3ae88
clippy_lints/src/format_args.rs
@@ -191,7 +191,7 @@ impl<'tcx> LateLintPass<'tcx> for FormatArgs {
191
let linter = FormatArgsExpr {
192
cx,
193
expr,
194
- macro_call,
+ macro_call: ¯o_call,
195
format_args: &format_args,
196
ignore_mixed: self.ignore_mixed,
197
};
@@ -210,7 +210,7 @@ impl<'tcx> LateLintPass<'tcx> for FormatArgs {
210
struct FormatArgsExpr<'a, 'tcx> {
211
cx: &'a LateContext<'tcx>,
212
expr: &'tcx Expr<'tcx>,
213
- macro_call: MacroCall,
+ macro_call: &'a MacroCall,
214
format_args: &'a rustc_ast::FormatArgs,
215
ignore_mixed: bool,
216
}
0 commit comments