diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-04-30 20:17:50 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-05-07 08:13:06 -0700 |
| commit | 645b1575641209b63d55ff711f83193465f8e082 (patch) | |
| tree | fa58d6ce23fd3f44d16329fb061cac6511d5059e /src/libstd/lib.rs | |
| parent | dca8a0d6e4d1848ead898b3fa5b1e6c940c85b87 (diff) | |
| download | rust-645b1575641209b63d55ff711f83193465f8e082.tar.gz rust-645b1575641209b63d55ff711f83193465f8e082.zip | |
core: Inherit the ptr module
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 9ef657f6e4a..1405d201a52 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -135,6 +135,7 @@ extern crate core; pub use core::intrinsics; pub use core::mem; +pub use core::ptr; // Run tests with libgreen instead of libnative. // @@ -191,7 +192,7 @@ pub mod strbuf; pub mod ascii; -pub mod ptr; +pub mod owned; mod managed; mod reference; pub mod rc; |
