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/).
100100### Fixed
101101
102102- Fixed bug in ` IndexMap::truncate ` that left the map in an inconsistent state.
103+ - Fixed compilation on ` thumbv6m-none-eabi ` without ` portable-atomic ` feature.
103104- Fixed clippy lints.
104105- Fixed ` {arc,box,object}_pool! ` emitting clippy lints.
105106- 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-
31use std:: {
42 env,
53 error:: Error ,
Original file line number Diff line number Diff line change 5454
5555mod treiber;
5656
57+ #[ cfg( any( feature = "portable-atomic" , target_has_atomic = "ptr" ) ) ]
5758pub mod arc;
5859pub mod boxed;
5960pub mod object;
Original file line number Diff line number Diff line change 11#![ deny( rust_2018_compatibility) ]
22#![ deny( rust_2018_idioms) ]
3- #![ deny( warnings) ]
43
54use std:: { ptr:: addr_of_mut, thread} ;
65
You can’t perform that action at this time.
0 commit comments