File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ pub struct DefaultHashTypes {
2323
2424impl DefaultHashTypes {
2525 // we are allowed to use `HashMap` and `HashSet` as identifiers for implementing the lint itself
26- #[ allow( internal ) ]
26+ #[ allow( default_hash_types ) ]
2727 pub fn new ( ) -> Self {
2828 let mut map = FxHashMap :: default ( ) ;
2929 map. insert ( sym:: HashMap , sym:: FxHashMap ) ;
Original file line number Diff line number Diff line change 2727#![ cfg_attr( test, feature( test) ) ]
2828
2929#![ deny( rust_2018_idioms) ]
30+ #![ allow( default_hash_types) ]
3031
3132#[ macro_use]
3233extern crate log;
Original file line number Diff line number Diff line change 11#![ feature( proc_macro_hygiene) ]
22#![ deny( rust_2018_idioms) ]
3+ #![ allow( default_hash_types) ]
34
45extern crate proc_macro;
56
You can’t perform that action at this time.
0 commit comments