rust-clippy/tests/ui/fxhash.stderr

41 lines
1.7 KiB
Text
Raw Normal View History

error: Prefer FxHashMap over HashMap, it has better performance and we don't need any collision prevention in clippy
--> $DIR/fxhash.rs:7:24
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | use std::collections::{HashMap, HashSet};
2018-10-06 16:18:06 +00:00
| ^^^^^^^ help: use: `FxHashMap`
|
= note: `-D clippy::default-hash-types` implied by `-D warnings`
error: Prefer FxHashSet over HashSet, it has better performance and we don't need any collision prevention in clippy
--> $DIR/fxhash.rs:7:33
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | use std::collections::{HashMap, HashSet};
2018-10-06 16:18:06 +00:00
| ^^^^^^^ help: use: `FxHashSet`
error: Prefer FxHashMap over HashMap, it has better performance and we don't need any collision prevention in clippy
--> $DIR/fxhash.rs:10:15
|
2018-12-27 15:57:55 +00:00
LL | let _map: HashMap<String, String> = HashMap::default();
| ^^^^^^^ help: use: `FxHashMap`
error: Prefer FxHashMap over HashMap, it has better performance and we don't need any collision prevention in clippy
--> $DIR/fxhash.rs:10:41
|
2018-12-27 15:57:55 +00:00
LL | let _map: HashMap<String, String> = HashMap::default();
| ^^^^^^^ help: use: `FxHashMap`
error: Prefer FxHashSet over HashSet, it has better performance and we don't need any collision prevention in clippy
--> $DIR/fxhash.rs:11:15
|
2018-12-27 15:57:55 +00:00
LL | let _set: HashSet<String> = HashSet::default();
| ^^^^^^^ help: use: `FxHashSet`
error: Prefer FxHashSet over HashSet, it has better performance and we don't need any collision prevention in clippy
--> $DIR/fxhash.rs:11:33
|
2018-12-27 15:57:55 +00:00
LL | let _set: HashSet<String> = HashSet::default();
| ^^^^^^^ help: use: `FxHashSet`
error: aborting due to 6 previous errors