Skip to content

Commit 5d7f6a1

Browse files
committed
Auto merge of #4255 - mikerite:fix-warnings-20190706, r=Manishearth
Fix unknown lint warnings changelog: none
2 parents 8744e8e + ce30891 commit 5d7f6a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clippy_lints/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#![allow(clippy::missing_docs_in_private_items)]
99
#![recursion_limit = "512"]
1010
#![warn(rust_2018_idioms, trivial_casts, trivial_numeric_casts)]
11-
#![deny(internal)]
11+
#![deny(rustc::internal)]
1212
#![feature(crate_visibility_modifier)]
1313
#![feature(concat_idents)]
1414

clippy_lints/src/types.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![allow(default_hash_types)]
1+
#![allow(rustc::default_hash_types)]
22

33
use std::borrow::Cow;
44
use std::cmp::Ordering;

0 commit comments

Comments
 (0)