Merge pull request #234 from jwilm/fix-clippy-feature

plugin(clippy) now relies on feature = "clippy"
This commit is contained in:
Erick Tryzelaar 2016-02-10 11:44:51 -08:00
commit c3f15fd7f8

View File

@ -1,5 +1,5 @@
#![cfg_attr(feature = "nightly", plugin(clippy))]
#![cfg_attr(feature = "nightly", allow(used_underscore_binding))]
#![cfg_attr(feature = "clippy", plugin(clippy))]
#![cfg_attr(feature = "clippy", allow(used_underscore_binding))]
#![cfg_attr(not(feature = "with-syntex"), feature(rustc_private, plugin))]
#![cfg_attr(not(feature = "with-syntex"), plugin(quasi_macros))]