Rust 2021 Macro Warning Cleanup (#3658)

* small warning cleanup

* remove unused imports in tests
This commit is contained in:
Yeastplume
2021-11-02 15:10:01 +00:00
committed by GitHub
parent 2e2149859f
commit 0170f03e4a
9 changed files with 4 additions and 10 deletions
+1 -1
View File
@@ -20,7 +20,7 @@
#[macro_export]
macro_rules! map_vec {
($thing:expr, $mapfn:expr) => {
$thing.iter().map($mapfn).collect::<Vec<_>>();
$thing.iter().map($mapfn).collect::<Vec<_>>()
};
}