about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorMark Mansi <markm@cs.wisc.edu>2018-03-24 18:19:33 -0500
committerMark Mansi <markm@cs.wisc.edu>2018-03-26 08:37:56 -0500
commit140bf949bf65bb0479dbe31bd3474d5546ef59e1 (patch)
treeb1fd9e07343006c54caec57f1a57ff3fef0967a6 /src/libstd
parent6b625b334155aabebeca87c49689d38ffe8aa700 (diff)
downloadrust-140bf949bf65bb0479dbe31bd3474d5546ef59e1.tar.gz
rust-140bf949bf65bb0479dbe31bd3474d5546ef59e1.zip
fix last two tidy
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/num.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/libstd/num.rs b/src/libstd/num.rs
index 6f537fd5c50..547b8c7c925 100644
--- a/src/libstd/num.rs
+++ b/src/libstd/num.rs
@@ -24,14 +24,9 @@ pub use core::num::Wrapping;
 #[unstable(feature = "nonzero", issue = "49137")]
 pub use core::num::{
     NonZeroU8, NonZeroI8, NonZeroU16, NonZeroI16, NonZeroU32, NonZeroI32,
-    NonZeroU64, NonZeroI64, NonZeroUsize, NonZeroIsize,
+    NonZeroU64, NonZeroI64, NonZeroU128, NonZeroI128, NonZeroUsize, NonZeroIsize,
 };
 
-// Change this to `#[unstable(feature = "i128", issue = "35118")]`
-// if other NonZero* integer types are stabilizied before 128-bit integers
-#[unstable(feature = "nonzero", issue = "49137")]
-pub use core::num::{NonZeroU128, NonZeroI128};
-
 #[cfg(test)] use fmt;
 #[cfg(test)] use ops::{Add, Sub, Mul, Div, Rem};