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:
parent
64c9dd0b9d
commit
2c61eb0cb7
1 changed files with 1 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue