diff options
Diffstat (limited to 'asm/lib.rs')
-rw-r--r-- | asm/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -34,6 +34,8 @@ #![no_std] #![crate_type = "staticlib"] #![deny(warnings)] +// Don't warn about feature(asm) being stable on Rust >= 1.59.0 +#![allow(stable_features)] mod inline; |