From ea6e005e2128a2cc533583a81af087df54561c38 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 7 May 2024 06:56:26 -0600 Subject: [PATCH] Remove vestigial sidefuzz support (#597) Originally added in #119 along with dudect support, however it was incomplete. This is now triggering warnings on the latest nightly versions. --- src/lib.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index f9e8fc78..b4681cc8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -213,10 +213,3 @@ pub mod prelude { #[cfg(feature = "hybrid-array")] pub use crate::array::{ArrayDecoding, ArrayEncoding}; } - -#[cfg(sidefuzz)] -#[no_mangle] -pub extern "C" fn fuzz() { - let input = sidefuzz::fetch_input(32); // 32 bytes of of fuzzing input as a &[u8] - sidefuzz::black_box(my_hopefully_constant_fn(input)); -}