Always enable Real, feature gate Float - Real forwarding
This commit is contained in:
parent
4234eb76aa
commit
849e2a0b1b
|
@ -56,7 +56,6 @@ pub mod identities;
|
|||
pub mod int;
|
||||
pub mod ops;
|
||||
pub mod pow;
|
||||
#[cfg(any(feature = "std", feature = "libm"))]
|
||||
pub mod real;
|
||||
pub mod sign;
|
||||
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
use core::ops::Neg;
|
||||
|
||||
use {Float, Num, NumCast};
|
||||
use {Num, NumCast};
|
||||
|
||||
#[cfg(any(feature = "std", feature = "libm"))]
|
||||
use Float;
|
||||
|
||||
// NOTE: These doctests have the same issue as those in src/float.rs.
|
||||
// They're testing the inherent methods directly, and not those of `Real`.
|
||||
|
@ -777,6 +780,7 @@ pub trait Real: Num + Copy + NumCast + PartialOrd + Neg<Output = Self> {
|
|||
fn atanh(self) -> Self;
|
||||
}
|
||||
|
||||
#[cfg(any(feature = "std", feature = "libm"))]
|
||||
impl<T: Float> Real for T {
|
||||
forward! {
|
||||
Float::min_value() -> Self;
|
||||
|
|
Loading…
Reference in New Issue