Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5dbe6f5

Browse files
committedApr 19, 2018
fix more unused attribute warnings
1 parent 7a8a387 commit 5dbe6f5

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed
 

‎coresimd/x86/mod.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ types! {
3333
/// # Examples
3434
///
3535
/// ```
36-
/// # #![feature(stdsimd)]
37-
/// # #![cfg_attr(dox, feature(mmx_target_feature))]
36+
/// # #![feature(stdsimd, mmx_target_feature)]
3837
/// # #![cfg_attr(not(dox), no_std)]
3938
/// # #[cfg(not(dox))]
4039
/// # extern crate std as real_std;

‎coresimd/x86/rdrand.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
//! RDRAND and RDSEED instructions for returning random numbers from an Intel
23
//! on-chip hardware random number generator which has been seeded by an
34
//! on-chip entropy source.

‎crates/coresimd/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
#![doc(test(attr(deny(warnings))),
3232
test(attr(allow(dead_code, deprecated, unused_variables,
3333
unused_mut))))]
34+
#![allow(unused_attributes)] // FIXME: spurious warnings?
3435

3536
#[cfg_attr(not(test), macro_use)]
3637
extern crate core as _core;

0 commit comments

Comments
 (0)
Please sign in to comment.