diff options
| author | Graydon Hoare <graydon@mozilla.com> | 2012-09-28 16:24:06 -0700 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2012-09-28 16:27:28 -0700 |
| commit | ad951b5976ce4205874b366f8cc2b8810b08d450 (patch) | |
| tree | d177661a4c467cd3d19a4d3a186dd092ccac885e /src/libcore | |
| parent | baa08d5a958a42a219f8c61bdfca0e4112e16820 (diff) | |
| download | rust-ad951b5976ce4205874b366f8cc2b8810b08d450.tar.gz rust-ad951b5976ce4205874b366f8cc2b8810b08d450.zip | |
De-export ptr, hash. Part of #3583.
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/core.rc | 3 | ||||
| -rw-r--r-- | src/libcore/ptr.rs | 2 |
2 files changed, 0 insertions, 5 deletions
diff --git a/src/libcore/core.rc b/src/libcore/core.rc index 11eaff3dd54..44e7e46d361 100644 --- a/src/libcore/core.rc +++ b/src/libcore/core.rc @@ -137,7 +137,6 @@ mod uint { #[path = "uint-template"] mod u8 { pub use inst::is_ascii; - #[path = "u8.rs"] mod inst; } @@ -170,7 +169,6 @@ mod float; mod f32; mod f64; mod str; -#[legacy_exports] mod ptr; #[legacy_exports] mod vec; @@ -186,7 +184,6 @@ mod uniq; mod ops; mod cmp; mod num; -#[legacy_exports] mod hash; #[legacy_exports] mod either; diff --git a/src/libcore/ptr.rs b/src/libcore/ptr.rs index 7f1f1e4b345..0cc283e89a4 100644 --- a/src/libcore/ptr.rs +++ b/src/libcore/ptr.rs @@ -6,7 +6,6 @@ use libc::{c_void, size_t}; #[nolink] #[abi = "cdecl"] extern mod libc_ { - #[legacy_exports]; #[rust_stack] fn memcpy(dest: *mut c_void, src: *const c_void, n: libc::size_t) -> *c_void; @@ -22,7 +21,6 @@ extern mod libc_ { #[abi = "rust-intrinsic"] extern mod rusti { - #[legacy_exports]; fn addr_of<T>(val: T) -> *T; } |
