dsp: fix nightly

master
Robert Jördens 2021-02-19 09:50:38 +01:00
parent ccec9d7fed
commit fcb7bb0025
2 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,5 @@
#![cfg_attr(not(test), no_std)]
#![cfg_attr(feature = "nightly", feature(asm, core_intrinsics))]
mod tools;
pub use tools::*;

View File

@ -1,5 +1,3 @@
#![cfg_attr(feature = "nightly", feature(asm, core_intrinsics))]
use core::ops::{Add, Mul, Neg};
pub fn abs<T>(x: T) -> T