Skip to content

Commit df1c07f

Browse files
committed
Fix clippy warning
1 parent 1b5f06b commit df1c07f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/salsa-macro-rules/src/unexpected_cycle_recovery.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
macro_rules! unexpected_cycle_recovery {
66
($db:ident, $value:ident, $count:ident, $($other_inputs:ident),*) => {{
77
std::mem::drop($db);
8-
std::mem::drop(($($other_inputs),*));
8+
std::mem::drop($($other_inputs),*);
99
panic!("cannot recover from cycle")
1010
}};
1111
}
@@ -14,7 +14,7 @@ macro_rules! unexpected_cycle_recovery {
1414
macro_rules! unexpected_cycle_initial {
1515
($db:ident, $($other_inputs:ident),*) => {{
1616
std::mem::drop($db);
17-
std::mem::drop(($($other_inputs),*));
17+
std::mem::drop($($other_inputs),*);
1818
panic!("no cycle initial value")
1919
}};
2020
}

0 commit comments

Comments
 (0)