diff options
author | Bert Belder <bertbelder@gmail.com> | 2019-01-15 13:06:25 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-15 07:06:25 -0500 |
commit | d8adeb41de2daab15a0d30eeead9796fa58bfbc3 (patch) | |
tree | 030670147587a2ebc04506a3dcad7bd34bce1016 /src/msg.rs | |
parent | 48ca06e420d08d15ac6653ab73c6249eb99428a7 (diff) |
Clippy fixes (also fixes build with nightly) (#1527)
Diffstat (limited to 'src/msg.rs')
-rw-r--r-- | src/msg.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/msg.rs b/src/msg.rs index b47d588bd..9a146a5d3 100644 --- a/src/msg.rs +++ b/src/msg.rs @@ -1,6 +1,9 @@ #![allow(unused_imports)] #![allow(dead_code)] -#![cfg_attr(feature = "cargo-clippy", allow(clippy, pedantic))] +#![cfg_attr( + feature = "cargo-clippy", + allow(clippy::all, clippy::pedantic) +)] use flatbuffers; use std::sync::atomic::Ordering; |