Skip to content

Commit 03a49fa

Browse files
authored
Make InputFilter public (#3170)
1 parent e443d68 commit 03a49fa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libafl/src/fuzzer/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,8 @@ where
581581
}
582582
}
583583

584-
trait InputFilter<I> {
584+
/// A trait to determine if a input should be run or not
585+
pub trait InputFilter<I> {
585586
fn should_execute(&mut self, input: &I) -> bool;
586587
}
587588

0 commit comments

Comments
 (0)