瀏覽代碼

Small fix for older Rust versions

Yoan Lecoq 8 年之前
父節點
當前提交
b2d957fe4b
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      traits/src/sign.rs

+ 1 - 1
traits/src/sign.rs

@@ -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 {