From 9f9e8c793b921b368028effe3aa6e708701a205d Mon Sep 17 00:00:00 2001 From: Quaternions Date: Wed, 28 Aug 2024 13:33:45 -0700 Subject: [PATCH] probably need this to make compiling with no wide work --- fixed_wide_vectors/src/macros/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/fixed_wide_vectors/src/macros/mod.rs b/fixed_wide_vectors/src/macros/mod.rs index fadc426..7faa7dd 100644 --- a/fixed_wide_vectors/src/macros/mod.rs +++ b/fixed_wide_vectors/src/macros/mod.rs @@ -245,6 +245,7 @@ macro_rules! impl_vector { $crate::impl_operator!( $struct { $($field), + }, BitXor, bitxor, Self ); // Impl floating-point based methods + #[cfg(feature="fixed_wide_traits")] $crate::impl_wide_operations!( $struct { $($field), + }, $size ); }; }