commit | b503da6f2b0c91298a78fe6da827220dd133b27c | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Fri Oct 12 21:29:26 2018 -0700 |
committer | David Tolnay <dtolnay@gmail.com> | Fri Oct 12 21:29:26 2018 -0700 |
tree | 971ea5d566b247256dad3a9084def4c6161098f9 | |
parent | 51bd7a09f7876373c2a3e46ea0dd5d0e8358ece8 [diff] [blame] |
Ignore a clippy false positive in map_clone
diff --git a/src/lib.rs b/src/lib.rs index d8031f5..dc07fea 100644 --- a/src/lib.rs +++ b/src/lib.rs
@@ -295,6 +295,8 @@ used_underscore_binding ) )] +// False positive: https://github.com/rust-lang-nursery/rust-clippy/issues/3274 +#![cfg_attr(feature = "cargo-clippy", allow(map_clone))] #[cfg(all( not(all(target_arch = "wasm32", target_os = "unknown")),