File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 39
39
//! distribution.
40
40
//!
41
41
//! * `rust_begin_unwind` - This function takes three arguments, a
42
- //! `fmt::Arguments`, a `&str`, and a `uint `. These three arguments dictate
42
+ //! `fmt::Arguments`, a `&str`, and a `usize `. These three arguments dictate
43
43
//! the panic message, the file at which panic was invoked, and the line.
44
44
//! It is up to consumers of this core library to define this panic
45
45
//! function; it is only required to never return.
@@ -88,14 +88,12 @@ mod int_macros;
88
88
#[ macro_use]
89
89
mod uint_macros;
90
90
91
- #[ path = "num/int.rs" ] pub mod int;
92
91
#[ path = "num/isize.rs" ] pub mod isize;
93
92
#[ path = "num/i8.rs" ] pub mod i8;
94
93
#[ path = "num/i16.rs" ] pub mod i16;
95
94
#[ path = "num/i32.rs" ] pub mod i32;
96
95
#[ path = "num/i64.rs" ] pub mod i64;
97
96
98
- #[ path = "num/uint.rs" ] pub mod uint;
99
97
#[ path = "num/usize.rs" ] pub mod usize;
100
98
#[ path = "num/u8.rs" ] pub mod u8;
101
99
#[ path = "num/u16.rs" ] pub mod u16;
You can’t perform that action at this time.
0 commit comments