forgot remove fixme messages

This commit is contained in:
Fabio Krapohl 2018-01-17 14:12:00 +01:00
parent 9d3db0e9ea
commit c58ae9cfad
1 changed files with 0 additions and 2 deletions

View File

@ -17,7 +17,6 @@ pub trait Zero: Sized + Add<Self, Output = Self> {
/// 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<Self, Output = Self> {
/// 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]