Ignore two new doc blocks in testing
This commit is contained in:
parent
cfe3ea65d2
commit
ce7f1b77f4
1 changed files with 2 additions and 2 deletions
|
|
@ -163,7 +163,7 @@ final binary still has SIMD instructions, for example, the function in question
|
|||
will need to be found and the crate in question will likely contain something
|
||||
like:
|
||||
|
||||
```rust
|
||||
```rust,ignore
|
||||
#[target_feature(enable = "simd128")]
|
||||
fn foo() {
|
||||
// ...
|
||||
|
|
@ -176,7 +176,7 @@ at compile time either by default or through a Cargo feature. For crate authors
|
|||
it's recommended to avoid `#[target_feature(enable = "...")]` except where
|
||||
necessary and instead use:
|
||||
|
||||
```rust
|
||||
```rust,ignore
|
||||
#[cfg(target_feature = "simd128")]
|
||||
fn foo() {
|
||||
// ...
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue