Remove unstable deprecated num::NonZeroI* types

This commit is contained in:
Simon Sapin
2018-03-24 11:36:29 +01:00
parent ee85bfdcc2
commit c536639c1e
2 changed files with 2 additions and 21 deletions

View File

@@ -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};