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>
This commit is contained in:
Chris Hennick 2024-05-02 13:14:49 -07:00 committed by GitHub
parent 64c9dd0b9d
commit 2c61eb0cb7
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -15,6 +15,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
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);