diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-04-15 18:18:08 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-04-15 19:47:03 -0700 |
| commit | c8f5b701dcf0b7dc4d78ef0d29f10e4f080b2517 (patch) | |
| tree | 07408024848d212dd1297d97323ab9bd812e3c3a /src/libstd/rt | |
| parent | 4a827f588e972668c122f70790ee45e4b3660ace (diff) | |
| download | rust-c8f5b701dcf0b7dc4d78ef0d29f10e4f080b2517.tar.gz rust-c8f5b701dcf0b7dc4d78ef0d29f10e4f080b2517.zip | |
std: Remove pub use globs
Diffstat (limited to 'src/libstd/rt')
| -rw-r--r-- | src/libstd/rt/local_ptr.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libstd/rt/local_ptr.rs b/src/libstd/rt/local_ptr.rs index 6b61af1d9a2..ff82be97489 100644 --- a/src/libstd/rt/local_ptr.rs +++ b/src/libstd/rt/local_ptr.rs @@ -23,10 +23,12 @@ use ptr::RawPtr; #[cfg(windows)] // mingw-w32 doesn't like thread_local things #[cfg(target_os = "android")] // see #10686 -pub use self::native::*; +pub use self::native::{init, cleanup, put, take, try_take, unsafe_take, exists, + unsafe_borrow, try_unsafe_borrow}; #[cfg(not(windows), not(target_os = "android"))] -pub use self::compiled::*; +pub use self::compiled::{init, cleanup, put, take, try_take, unsafe_take, exists, + unsafe_borrow, try_unsafe_borrow}; /// Encapsulates a borrowed value. When this value goes out of scope, the /// pointer is returned. |
