Skip to content

Commit

Permalink
more update
Browse files Browse the repository at this point in the history
  • Loading branch information
domenukk committed Oct 28, 2024
1 parent b8030aa commit 4904dfc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions libafl/src/feedbacks/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -622,11 +622,11 @@ where
{
#[allow(clippy::wrong_self_convention)]
#[allow(clippy::needless_range_loop)]
fn is_interesting_u8_simd_optimized<S: HasNamedMetadata, OT: MatchName>(
&mut self,
state: &mut S,
observers: &OT,
) -> bool {
fn is_interesting_u8_simd_optimized<S, OT>(&mut self, state: &mut S, observers: &OT) -> bool
where
S: HasNamedMetadata,
OT: MatchName,
{
// 128 bits vectors
type VectorType = core::simd::u8x16;

Expand Down
2 changes: 1 addition & 1 deletion libafl/src/feedbacks/new_hash_feedback.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ impl<O, EM, I, OT, S> Feedback<EM, I, OT, S> for NewHashFeedback<O>
where
O: ObserverWithHashField + Named,
OT: MatchName + ObserversTuple<I, S>,
S: HasNamedMetadata + UsesInput,
S: HasNamedMetadata,
{
#[allow(clippy::wrong_self_convention)]
fn is_interesting(
Expand Down

0 comments on commit 4904dfc

Please sign in to comment.