Skip to content

Commit

Permalink
Added missing cfg attr for scalar-math
Browse files Browse the repository at this point in the history
  • Loading branch information
vallentin committed Jun 20, 2024
1 parent a42fa02 commit feeb374
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions src/bool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,15 @@ pub use coresimd::bvec4a::BVec4A;
))]
pub use scalar::bvec3a::BVec3A;

#[cfg(not(any(
feature = "scalar-math",
feature = "core-simd",
target_arch = "aarch64",
target_feature = "sse2",
target_feature = "simd128"
),))]
#[cfg(any(
not(any(
feature = "core-simd",
target_arch = "aarch64",
target_feature = "sse2",
target_feature = "simd128"
)),
feature = "scalar-math"
))]
pub use scalar::bvec4a::BVec4A;

mod const_test_bvec2 {
Expand Down

0 comments on commit feeb374

Please sign in to comment.