You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The query! macro can trigger clippy::used_underscore_binding due to this variable which is used a few lines later (clippy doesn't care about the if false {}). It could be fixed by renaming _expr to expr
The text was updated successfully, but these errors were encountered:
The
query!
macro can triggerclippy::used_underscore_binding
due to this variable which is used a few lines later (clippy doesn't care about theif false {}
). It could be fixed by renaming_expr
toexpr
The text was updated successfully, but these errors were encountered: