Small fix for older Rust versions

This commit is contained in:
Yoan Lecoq 2017-04-29 07:47:39 +02:00
parent 579466d95c
commit b2d957fe4b
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ macro_rules! signed_impl {
signed_impl!(isize i8 i16 i32 i64);
impl<T: Signed> Signed for Wrapping<T> where Wrapping<T>: Num + Neg<Output=Self>
impl<T: Signed> Signed for Wrapping<T> where Wrapping<T>: Num + Neg<Output=Wrapping<T>>
{
#[inline]
fn abs(&self) -> Self {