Relax orderings of Serialize impl for atomic types to match the latest stable

This commit is contained in:
Taiki Endo 2022-08-20 22:27:22 +09:00
parent ebd06eebdb
commit 1d42d3571a

View File

@ -916,7 +916,7 @@ macro_rules! atomic_impl {
S: Serializer,
{
// Matches the atomic ordering used in libcore for the Debug impl
self.load(Ordering::SeqCst).serialize(serializer)
self.load(Ordering::Relaxed).serialize(serializer)
}
}
)*