diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-02-02 10:58:05 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-02-02 10:58:05 -0800 |
| commit | 387722b304abac2c294589494182def26b91aa20 (patch) | |
| tree | b11fe4bd470ebb949b9fefe9d338166b00efd6f9 | |
| parent | 1641c32d83291999a31a26edd82a4cd9c20b7942 (diff) | |
| parent | f9f7ad74cf6a46b3aa78a6240ad1404e76594026 (diff) | |
| download | rust-387722b304abac2c294589494182def26b91aa20.tar.gz rust-387722b304abac2c294589494182def26b91aa20.zip | |
rollup merge of #21800: brson/unused_features
When it was un*known*_features it was reasonable to be deny by default. cc #21798 r? @alexcrichton
| -rw-r--r-- | src/librustc/lint/builtin.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/lint/builtin.rs b/src/librustc/lint/builtin.rs index e14ae81a219..1722261f4f2 100644 --- a/src/librustc/lint/builtin.rs +++ b/src/librustc/lint/builtin.rs @@ -2014,7 +2014,7 @@ declare_lint! { declare_lint! { pub UNUSED_FEATURES, - Deny, + Warn, "unused or unknown features found in crate-level #[feature] directives" } |
