about summary refs log tree commit diff
path: root/src/libstd/sync
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2014-12-30 10:19:20 -0800
committerCorey Farwell <coreyf@rwell.org>2014-12-30 11:43:51 -0800
commit1d26fb9e07e664b312ca9d7b666f6d1dd52285ed (patch)
treeb655eea9ba052d04982d522ebae6e00931235657 /src/libstd/sync
parent023dfb0c898d851dee6ace2f8339b73b5287136b (diff)
downloadrust-1d26fb9e07e664b312ca9d7b666f6d1dd52285ed.tar.gz
rust-1d26fb9e07e664b312ca9d7b666f6d1dd52285ed.zip
Remove core::atomic::Ordering::* public reexport
Part of #19253

[breaking-change]
Diffstat (limited to 'src/libstd/sync')
-rw-r--r--src/libstd/sync/atomic.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/atomic.rs b/src/libstd/sync/atomic.rs
index bdf947438f3..18c917aca8a 100644
--- a/src/libstd/sync/atomic.rs
+++ b/src/libstd/sync/atomic.rs
@@ -101,9 +101,9 @@ use core::mem;
 use core::prelude::{Send, Drop, None, Option, Some};
 
 pub use core::atomic::{AtomicBool, AtomicInt, AtomicUint, AtomicPtr};
-pub use core::atomic::{Ordering, Relaxed, Release, Acquire, AcqRel, SeqCst};
 pub use core::atomic::{INIT_ATOMIC_BOOL, INIT_ATOMIC_INT, INIT_ATOMIC_UINT};
 pub use core::atomic::fence;
+pub use core::atomic::Ordering::{mod, Relaxed, Release, Acquire, AcqRel, SeqCst};
 
 /// An atomic, nullable unique pointer
 ///