diff options
| author | Simon Sapin <simon.sapin@exyr.org> | 2018-03-24 11:36:29 +0100 |
|---|---|---|
| committer | Simon Sapin <simon.sapin@exyr.org> | 2018-05-16 19:09:03 +0200 |
| commit | c536639c1e1ce7e2b4816a40f2e954c581431456 (patch) | |
| tree | 3a3f7172a1064f482a279c4b36bd8038035cf5e6 /src/libstd | |
| parent | ee85bfdcc23de49bbc565142efff87b14a7fc775 (diff) | |
| download | rust-c536639c1e1ce7e2b4816a40f2e954c581431456.tar.gz rust-c536639c1e1ce7e2b4816a40f2e954c581431456.zip | |
Remove unstable deprecated num::NonZeroI* types
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/num.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/libstd/num.rs b/src/libstd/num.rs index 4b975dd912a..aa806b947b0 100644 --- a/src/libstd/num.rs +++ b/src/libstd/num.rs @@ -23,10 +23,7 @@ pub use core::num::Wrapping; #[unstable(feature = "nonzero", issue = "49137")] #[allow(deprecated)] -pub use core::num::{ - NonZeroU8, NonZeroI8, NonZeroU16, NonZeroI16, NonZeroU32, NonZeroI32, - NonZeroU64, NonZeroI64, NonZeroU128, NonZeroI128, NonZeroUsize, NonZeroIsize, -}; +pub use core::num::{NonZeroU8, NonZeroU16, NonZeroU32, NonZeroU64, NonZeroU128, NonZeroUsize}; #[cfg(test)] use fmt; #[cfg(test)] use ops::{Add, Sub, Mul, Div, Rem}; |
