Skip to content

Commit

Permalink
Fix doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
valaphee committed Apr 8, 2024
1 parent 82b4ac8 commit 07acda3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,13 @@ pub struct Table<const L: usize> {}
))]
pub struct Simd {}

#[cfg(not(all(
target_feature = "sse2",
target_feature = "sse4.1",
target_feature = "pclmulqdq"
#[cfg(not(any(
doc,
all(
target_feature = "sse2",
target_feature = "sse4.1",
target_feature = "pclmulqdq"
)
)))]
pub type Simd = DefaultImpl;

Expand Down

0 comments on commit 07acda3

Please sign in to comment.