probably need this to make compiling with no wide work

This commit is contained in:
Quaternions 2024-08-28 13:33:45 -07:00
parent 1f6594468d
commit 9f9e8c793b

View File

@ -245,6 +245,7 @@ macro_rules! impl_vector {
$crate::impl_operator!( $struct { $($field), + }, BitXor, bitxor, Self ); $crate::impl_operator!( $struct { $($field), + }, BitXor, bitxor, Self );
// Impl floating-point based methods // Impl floating-point based methods
#[cfg(feature="fixed_wide_traits")]
$crate::impl_wide_operations!( $struct { $($field), + }, $size ); $crate::impl_wide_operations!( $struct { $($field), + }, $size );
}; };
} }