diff --git a/src/real.rs b/src/real.rs index d4feee0f..0b1c574b 100644 --- a/src/real.rs +++ b/src/real.rs @@ -14,7 +14,7 @@ use crate::{Float, Num, NumCast}; /// for a list of data types that could meaningfully implement this trait. /// /// This trait is only available with the `std` feature, or with the `libm` feature otherwise. -pub trait Real: Num + Copy + NumCast + PartialOrd + Neg { +pub trait Real: Num + NumCast + PartialOrd + Neg { /// Returns the smallest finite value that this type can represent. /// /// ```