From 2c61eb0cb734d1f261e26e1fc97e9c253b76e036 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Thu, 2 May 2024 13:14:49 -0700 Subject: [PATCH] doc(examples): fix a bug `doit()` function can't exist without `cfg(feature = "_deflate-any")`, and making it unreachable isn't enough Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> --- examples/write-large-file.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/write-large-file.rs b/examples/write-large-file.rs index 2b8ee943..f7ae183e 100644 --- a/examples/write-large-file.rs +++ b/examples/write-large-file.rs @@ -15,6 +15,7 @@ fn main() -> Result<(), Box> { Ok(()) } +#[cfg(feature = "_deflate-any")] fn doit(filename: &str) -> zip::result::ZipResult<()> { let file = std::fs::File::create(filename)?; let mut zip = zip::ZipWriter::new(file);