silence warning

This commit is contained in:
Quaternions 2024-09-09 15:33:07 -07:00
parent 3f0900b0ec
commit fb9228b7fd

View File

@ -142,6 +142,8 @@ impl_additive_operator!( Fixed, BitXor, bitxor, Self );
// non-wide operators. The result is the same width as the inputs.
// This macro is not used in the default configuration.
#[allow(unused_macros)]
macro_rules! impl_multiplicative_operator_not_const_generic {
( ($struct: ident, $trait: ident, $method: ident, $output: ty ), $width:expr ) => {
impl<const F:usize> core::ops::$trait for $struct<$width,F>{