File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,13 @@ use core::ops::{Bound, RangeBounds};
7
7
#[ cfg( feature = "std" ) ]
8
8
use std:: collections:: BTreeMap ;
9
9
#[ cfg( feature = "std" ) ]
10
- use std:: collections:: btree_map:: { Iter as BTreeIter , IterMut as BTreeIterMut , Range as BTreeRange } ;
10
+ use std:: collections:: btree_map:: { Iter as BTreeIter , IterMut as BTreeIterMut ,
11
+ Range as BTreeRange } ;
11
12
#[ cfg( all( feature = "alloc" , not( feature = "std" ) ) ) ]
12
- use alloc:: btree_map:: BTreeMap ;
13
+ use alloc:: collections :: btree_map:: BTreeMap ;
13
14
#[ cfg( all( feature = "alloc" , not( feature = "std" ) ) ) ]
14
- use alloc:: btree_map:: { Iter as BTreeIter , IterMut as BTreeIterMut , Range as BTreeRange } ;
15
+ use alloc:: collections:: btree_map:: { Iter as BTreeIter , IterMut as BTreeIterMut ,
16
+ Range as BTreeRange } ;
15
17
16
18
/// A managed map.
17
19
///
You can’t perform that action at this time.
0 commit comments