clippy: disable redundant_closure

This commit is contained in:
Graham Christensen 2019-04-11 21:14:02 -04:00
parent 07e15df4a9
commit dc65de146e
No known key found for this signature in database
GPG key ID: ACA1C1D120C83D5C

View file

@ -1,4 +1,9 @@
#![recursion_limit = "512"]
// Replacing .map(|arch| arch.to_string())
// with .map(systems::System::to_string)
//
// seems much less clear and I just don't like it :)
#![allow(clippy::redundant_closure)]
#[macro_use]
extern crate serde_derive;