-
Notifications
You must be signed in to change notification settings - Fork 850
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix new clippy lints #4734
Fix new clippy lints #4734
Conversation
@@ -16,6 +16,7 @@ | |||
// under the License. | |||
|
|||
//! Defines kernel for length of string arrays and binary arrays | |||
#![allow(clippy::redundant_closure_call)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is fixed properly by #4718
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great to me -- thank you @tustvold
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Clippy is annoying but it is hard to argue with a net deletion of code 👍
Which issue does this PR close?
Closes #.
Rationale for this change
New rust release https://github.com/rust-lang/rust/blob/master/RELEASES.md#version-1720-2023-08-24 added new lints
What changes are included in this PR?
Are there any user-facing changes?