diff --git a/src/identities.rs b/src/identities.rs index 0360a19..36846f2 100644 --- a/src/identities.rs +++ b/src/identities.rs @@ -17,7 +17,6 @@ pub trait Zero: Sized + Add { /// This function should return the same result at all times regardless of /// external mutable state, for example values stored in TLS or in /// `static mut`s. - // FIXME (#5527): This should be an associated constant const ZERO: Self; #[inline] @@ -83,7 +82,6 @@ pub trait One: Sized + Mul { /// This function should return the same result at all times regardless of /// external mutable state, for example values stored in TLS or in /// `static mut`s. - // FIXME (#5527): This should be an associated constant const ONE: Self; #[inline]