diff options
| author | Aaron Turon <aturon@mozilla.com> | 2014-12-19 22:28:12 -0800 |
|---|---|---|
| committer | Aaron Turon <aturon@mozilla.com> | 2014-12-19 22:28:12 -0800 |
| commit | 89f75a6e810e8994143f44e2239f58ffa132ad86 (patch) | |
| tree | fc69260789d567e187dde16ae490ea35457771be /src/libstd/num/int.rs | |
| parent | 1c2df5cc3cfc0c9e80adf9fa6504d55056741c5a (diff) | |
| download | rust-89f75a6e810e8994143f44e2239f58ffa132ad86.tar.gz rust-89f75a6e810e8994143f44e2239f58ffa132ad86.zip | |
Stabilize integer modules
This small patch stabilizes the names of all integer modules (including `int` and `uint`) and the `MIN` and `MAX` constants. The `BITS` and `BYTES` constants are left unstable for now.
Diffstat (limited to 'src/libstd/num/int.rs')
| -rw-r--r-- | src/libstd/num/int.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/num/int.rs b/src/libstd/num/int.rs index f59dab4b20b..9ccb1544fdc 100644 --- a/src/libstd/num/int.rs +++ b/src/libstd/num/int.rs @@ -10,7 +10,7 @@ //! Operations and constants for architecture-sized signed integers (`int` type) -#![unstable] +#![stable] #![doc(primitive = "int")] pub use core::int::{BITS, BYTES, MIN, MAX}; |
