Clippy fixes
This commit is contained in:
parent
9938c498a0
commit
717e3baed9
3 changed files with 8 additions and 6 deletions
|
@ -131,7 +131,7 @@ macro_rules! array_impls {
|
|||
}
|
||||
|
||||
array_impls! {
|
||||
01 02 03 04 05 06 07 08 09 10
|
||||
1 2 3 4 5 6 7 8 9 10
|
||||
11 12 13 14 15 16 17 18 19 20
|
||||
21 22 23 24 25 26 27 28 29 30
|
||||
31 32
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#![allow(clippy::large_enum_variant)]
|
||||
|
||||
pub type Map<K, V> = std::collections::BTreeMap<K, V>;
|
||||
pub type Set<T> = std::collections::BTreeSet<T>;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue