microsoft / lepton_jpeg_rust

Port of DropBox Lepton compression to Rust
Apache License 2.0
129 stars 10 forks source link

remove warning for dead code that isn't turned on normally #73

Closed mcroomp closed 5 months ago

mcroomp commented 5 months ago

Compression stats are not normally enabled (they are behind a feature tag that's just used for benchmarking). Avoid dead code warning by not enabling this if compression stats were not enabled.

Warning started popping up with a new compiler version. For some reason it doesn't like the trait being partially enabled. Removed the trait since it was unused anyway.