We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
reversed_empty_ranges
1 parent 0740695 commit aff63a6Copy full SHA for aff63a6
src/slice.rs
@@ -867,12 +867,17 @@ macro_rules! s(
867
)
868
};
869
($($t:tt)*) => {
870
- $crate::s![@parse
871
- ::core::marker::PhantomData::<$crate::Ix0>,
872
873
- []
874
- $($t)*
875
- ]
+ {
+ #[allow(clippy::reversed_empty_ranges)]
+ $crate::s![@parse
+ ::core::marker::PhantomData::<$crate::Ix0>,
876
+ []
877
+ $($t)*
878
+ ]
879
+ }
880
881
882
);
883
0 commit comments