remove another unecessary HasTargetBytes constraint (#2743)

This commit is contained in:
jejuisland87654 2024-12-04 14:09:34 +01:00 committed by GitHub
parent 2758a1c2fb
commit 8a91a2e5df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,7 +16,6 @@ use libafl::{
corpus::Testcase,
executors::ExitKind,
feedbacks::{Feedback, StateInitializer},
inputs::HasTargetBytes,
observers::Observer,
state::State,
Error, HasMetadata,
@ -652,7 +651,6 @@ impl<S> StateInitializer<S> for AsanErrorsFeedback<S> {}
impl<EM, OT, S> Feedback<EM, S::Input, OT, S> for AsanErrorsFeedback<S>
where
S: State + Debug,
S::Input: HasTargetBytes,
OT: MatchNameRef,
{
#[allow(clippy::wrong_self_convention)]