1
Fork 0

add match to diagnostic messages

This commit is contained in:
Deadbeef 2023-04-29 15:47:23 +00:00
parent e92806704b
commit 475378f0c6
2 changed files with 9 additions and 4 deletions

View file

@ -103,9 +103,9 @@ impl<'tcx> LateLintPass<'tcx> for NoopMethodCall {
let Some(name) = cx.tcx.get_diagnostic_name(i.def_id()) else { return };
let op = match name {
sym::noop_method_borrow => "borrowing",
sym::noop_method_clone => "cloning",
sym::noop_method_deref => "dereferencing",
sym::noop_method_borrow => "borrow",
sym::noop_method_clone => "clone",
sym::noop_method_deref => "deref",
_ => return,
};