about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorGuillaumeGomez <guillaume1.gomez@gmail.com>2015-02-18 23:46:22 +0100
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2015-03-01 02:42:17 +0100
commit9e28caef31de0b36262273be13d29cec80876f77 (patch)
tree710015df0758b4eb552465893773a3224e32e858 /src
parent890293655251c372ea99694c0c9f0795e2663286 (diff)
downloadrust-9e28caef31de0b36262273be13d29cec80876f77.tar.gz
rust-9e28caef31de0b36262273be13d29cec80876f77.zip
Remove int/uint
Diffstat (limited to 'src')
-rw-r--r--src/libcore/lib.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs
index a9d69973590..7cc963bed35 100644
--- a/src/libcore/lib.rs
+++ b/src/libcore/lib.rs
@@ -39,7 +39,7 @@
 //!   distribution.
 //!
 //! * `rust_begin_unwind` - This function takes three arguments, a
-//!   `fmt::Arguments`, a `&str`, and a `uint`. These three arguments dictate
+//!   `fmt::Arguments`, a `&str`, and a `usize`. These three arguments dictate
 //!   the panic message, the file at which panic was invoked, and the line.
 //!   It is up to consumers of this core library to define this panic
 //!   function; it is only required to never return.
@@ -88,14 +88,12 @@ mod int_macros;
 #[macro_use]
 mod uint_macros;
 
-#[path = "num/int.rs"]  pub mod int;
 #[path = "num/isize.rs"]  pub mod isize;
 #[path = "num/i8.rs"]   pub mod i8;
 #[path = "num/i16.rs"]  pub mod i16;
 #[path = "num/i32.rs"]  pub mod i32;
 #[path = "num/i64.rs"]  pub mod i64;
 
-#[path = "num/uint.rs"] pub mod uint;
 #[path = "num/usize.rs"] pub mod usize;
 #[path = "num/u8.rs"]   pub mod u8;
 #[path = "num/u16.rs"]  pub mod u16;