File tree Expand file tree Collapse file tree 7 files changed +14
-3
lines changed Expand file tree Collapse file tree 7 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -132,8 +132,8 @@ jobs:
132132 target :
133133 - i686-unknown-linux-gnu
134134 - powerpc-unknown-linux-gnu
135- # - powerpc64-unknown-linux-gnu
136- - mips-unknown-linux-gnu
135+ - powerpc64-unknown-linux-gnu
136+ # - mips-unknown-linux-gnu
137137 - arm-linux-androideabi
138138
139139 steps :
Original file line number Diff line number Diff line change @@ -11,10 +11,17 @@ pub mod hash_set;
1111pub mod linked_list;
1212pub mod vec_deque;
1313
14+ #[ allow( unused) ]
1415pub use binary_heap:: BinaryHeap ;
16+ #[ allow( unused) ]
1517pub use btree_map:: BTreeMap ;
18+ #[ allow( unused) ]
1619pub use btree_set:: BTreeSet ;
20+ #[ allow( unused) ]
1721pub use hash_map:: HashMap ;
22+ #[ allow( unused) ]
1823pub use hash_set:: HashSet ;
24+ #[ allow( unused) ]
1925pub use linked_list:: LinkedList ;
26+ #[ allow( unused) ]
2027pub use vec_deque:: VecDeque ;
Original file line number Diff line number Diff line change 55
66mod from_stream;
77
8+ #[ allow( unused) ]
89#[ doc( inline) ]
910pub use std:: option:: Option ;
1011
Original file line number Diff line number Diff line change 55
66mod from_stream;
77
8+ #[ allow( unused) ]
89#[ doc( inline) ]
910pub use std:: result:: Result ;
1011
Original file line number Diff line number Diff line change 55mod extend;
66mod from_stream;
77
8+ #[ allow( unused) ]
89#[ doc( inline) ]
910pub use std:: string:: String ;
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ impl WakerSet {
149149 /// Returns `true` if at least one operation was notified.
150150 #[ cold]
151151 fn notify ( & self , n : Notify ) -> bool {
152- let mut inner = & mut * self . lock ( ) ;
152+ let inner = & mut * self . lock ( ) ;
153153 let mut notified = false ;
154154
155155 for ( _, opt_waker) in inner. entries . iter_mut ( ) {
Original file line number Diff line number Diff line change 66mod extend;
77mod from_stream;
88
9+ #[ allow( unused) ]
910#[ doc( inline) ]
1011pub use std:: vec:: Vec ;
You can’t perform that action at this time.
0 commit comments