We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcf3db6 commit 6033642Copy full SHA for 6033642
collector/src/main.rs
@@ -321,7 +321,7 @@ fn bench(
321
}
322
323
fn check_measureme_installed() -> Result<(), String> {
324
- let not_installed = std::array::IntoIter::new(["summarize", "crox", "flamegraph"])
+ let not_installed = IntoIterator::into_iter(["summarize", "crox", "flamegraph"])
325
.filter(|n| !is_installed(n))
326
.collect::<Vec<_>>();
327
if not_installed.is_empty() {
0 commit comments