We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d14d194 commit ba0601dCopy full SHA for ba0601d
src/libcore/num/wrapping.rs
@@ -12,6 +12,7 @@ use super::Wrapping;
12
13
use ops::*;
14
15
+#[allow(unused_macros)]
16
macro_rules! sh_impl_signed {
17
($t:ident, $f:ident) => (
18
#[stable(feature = "rust1", since = "1.0.0")]
src/libcore/ops.rs
@@ -763,6 +763,7 @@ macro_rules! neg_impl_numeric {
763
($($t:ty)*) => { neg_impl_core!{ x => -x, $($t)*} }
764
}
765
766
767
macro_rules! neg_impl_unsigned {
768
($($t:ty)*) => {
769
neg_impl_core!{ x => {
0 commit comments