diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-05-01 11:19:56 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-05-07 08:16:14 -0700 |
| commit | f62c121eb0de35ac03a7860e6039202f2522e527 (patch) | |
| tree | ceabe832921580a94cc4892ec5c134f05dbadc43 /src/libstd/lib.rs | |
| parent | d4b5d82a3356630ede4ce1b436cb59760be7b703 (diff) | |
| download | rust-f62c121eb0de35ac03a7860e6039202f2522e527.tar.gz rust-f62c121eb0de35ac03a7860e6039202f2522e527.zip | |
core: Inherit the cell module
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 95d67eb77d1..4a555035a08 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -141,6 +141,7 @@ extern crate core; pub use core::any; pub use core::bool; pub use core::cast; +pub use core::cell; pub use core::char; pub use core::clone; pub use core::container; @@ -220,7 +221,6 @@ pub mod hash; /* Common data structures */ pub mod result; -pub mod cell; /* Tasks and communication */ |
