rust-itertools / itertools

Extra iterator adaptors, iterator methods, free functions, and macros.
https://docs.rs/itertools/
Apache License 2.0
2.72k stars 309 forks source link

Fix "bench1" in debug mode #770

Closed Philippe-Cholet closed 1 year ago

Philippe-Cholet commented 1 year ago

Closes #768

Benches use the release profile so this was silently ignored. But cargo test --all-targets uses the debug profile so it does not ignore it.

wrapping_add is the default behavior so I just call it explicitely.

Then cargo test --all-targets passes.