-
-
Notifications
You must be signed in to change notification settings - Fork 324
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 build/clippy errors and update CASR #1375
Conversation
@@ -7,6 +7,7 @@ | |||
allow(clippy::useless_conversion) | |||
)] | |||
#![allow(clippy::needless_pass_by_value)] | |||
#![allow(clippy::needless_pass_by_ref_mut)] |
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.
That's a false positive? Always?
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.
In libafl_qemu, it is at multiple points. I'll make this statement-level allows.
Somehow the fuzzers on ubuntu don't work? |
Yeah I have no idea on this one chief 😂 |
There appears to be a few missing imports from CASR components. Upstream, this should be fixed by making sure the macro itself explicitly refers to the items it uses, but we can fix this downstream for now.
Otherwise, clippy is mad again.