File tree 7 files changed +14
-3
lines changed
7 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -132,8 +132,8 @@ jobs:
132
132
target :
133
133
- i686-unknown-linux-gnu
134
134
- powerpc-unknown-linux-gnu
135
- # - powerpc64-unknown-linux-gnu
136
- - mips-unknown-linux-gnu
135
+ - powerpc64-unknown-linux-gnu
136
+ # - mips-unknown-linux-gnu
137
137
- arm-linux-androideabi
138
138
139
139
steps :
Original file line number Diff line number Diff line change @@ -11,10 +11,17 @@ pub mod hash_set;
11
11
pub mod linked_list;
12
12
pub mod vec_deque;
13
13
14
+ #[ allow( unused) ]
14
15
pub use binary_heap:: BinaryHeap ;
16
+ #[ allow( unused) ]
15
17
pub use btree_map:: BTreeMap ;
18
+ #[ allow( unused) ]
16
19
pub use btree_set:: BTreeSet ;
20
+ #[ allow( unused) ]
17
21
pub use hash_map:: HashMap ;
22
+ #[ allow( unused) ]
18
23
pub use hash_set:: HashSet ;
24
+ #[ allow( unused) ]
19
25
pub use linked_list:: LinkedList ;
26
+ #[ allow( unused) ]
20
27
pub use vec_deque:: VecDeque ;
Original file line number Diff line number Diff line change 5
5
6
6
mod from_stream;
7
7
8
+ #[ allow( unused) ]
8
9
#[ doc( inline) ]
9
10
pub use std:: option:: Option ;
10
11
Original file line number Diff line number Diff line change 5
5
6
6
mod from_stream;
7
7
8
+ #[ allow( unused) ]
8
9
#[ doc( inline) ]
9
10
pub use std:: result:: Result ;
10
11
Original file line number Diff line number Diff line change 5
5
mod extend;
6
6
mod from_stream;
7
7
8
+ #[ allow( unused) ]
8
9
#[ doc( inline) ]
9
10
pub use std:: string:: String ;
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ impl WakerSet {
149
149
/// Returns `true` if at least one operation was notified.
150
150
#[ cold]
151
151
fn notify ( & self , n : Notify ) -> bool {
152
- let mut inner = & mut * self . lock ( ) ;
152
+ let inner = & mut * self . lock ( ) ;
153
153
let mut notified = false ;
154
154
155
155
for ( _, opt_waker) in inner. entries . iter_mut ( ) {
Original file line number Diff line number Diff line change 6
6
mod extend;
7
7
mod from_stream;
8
8
9
+ #[ allow( unused) ]
9
10
#[ doc( inline) ]
10
11
pub use std:: vec:: Vec ;
You can’t perform that action at this time.
0 commit comments