File tree Expand file tree Collapse file tree 4 files changed +2
-3
lines changed Expand file tree Collapse file tree 4 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
100
100
### Fixed
101
101
102
102
- Fixed bug in ` IndexMap::truncate ` that left the map in an inconsistent state.
103
+ - Fixed compilation on ` thumbv6m-none-eabi ` without ` portable-atomic ` feature.
103
104
- Fixed clippy lints.
104
105
- Fixed ` {arc,box,object}_pool! ` emitting clippy lints.
105
106
- Fixed the list of implemented data structures in the crate docs, by adding ` Deque ` ,
Original file line number Diff line number Diff line change 1
- #![ deny( warnings) ]
2
-
3
1
use std:: {
4
2
env,
5
3
error:: Error ,
Original file line number Diff line number Diff line change 54
54
55
55
mod treiber;
56
56
57
+ #[ cfg( any( feature = "portable-atomic" , target_has_atomic = "ptr" ) ) ]
57
58
pub mod arc;
58
59
pub mod boxed;
59
60
pub mod object;
Original file line number Diff line number Diff line change 1
1
#![ deny( rust_2018_compatibility) ]
2
2
#![ deny( rust_2018_idioms) ]
3
- #![ deny( warnings) ]
4
3
5
4
use std:: { ptr:: addr_of_mut, thread} ;
6
5
You can’t perform that action at this time.
0 commit comments