From 2836cfc9ab288e98d5bf6b8ee812624f86143d6b Mon Sep 17 00:00:00 2001 From: Vinzent Steinberg Date: Tue, 10 Apr 2018 19:51:03 +0200 Subject: [PATCH] Update outdated FIXME --- src/identities.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/identities.rs b/src/identities.rs index 3306e5f..42d2257 100644 --- a/src/identities.rs +++ b/src/identities.rs @@ -17,7 +17,7 @@ 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 + // This cannot be an associated constant, because of bignums. fn zero() -> Self; /// Returns `true` if `self` is equal to the additive identity. @@ -77,7 +77,7 @@ 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 + // This cannot be an associated constant, because of bignums. fn one() -> Self; /// Returns `true` if `self` is equal to the multiplicative identity.