diff options
| author | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2013-08-30 15:04:20 -0700 |
|---|---|---|
| committer | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2013-08-30 15:10:55 -0700 |
| commit | 9730ed9b027f17441faa90fce26350991a76b1d5 (patch) | |
| tree | 44fd0f9b5282467259b00f3b3117881210f23a1d /src/libstd/num | |
| parent | 66e3a4c50efe21e2e62fcf845184c6f1c8044c97 (diff) | |
| download | rust-9730ed9b027f17441faa90fce26350991a76b1d5.tar.gz rust-9730ed9b027f17441faa90fce26350991a76b1d5.zip | |
std: Add a fixme for when we add Trait::<for T>::static_method()
Diffstat (limited to 'src/libstd/num')
| -rw-r--r-- | src/libstd/num/num.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd/num/num.rs b/src/libstd/num/num.rs index 3cb110d8464..ac8f0022b95 100644 --- a/src/libstd/num/num.rs +++ b/src/libstd/num/num.rs @@ -285,6 +285,7 @@ pub trait Primitive: Num + Div<Self,Self> + Rem<Self,Self> { // FIXME (#5527): These should be associated constants + // FIXME (#8888): Removing `unused_self` requires #8888 to be fixed. fn bits(unused_self: Option<Self>) -> uint; fn bytes(unused_self: Option<Self>) -> uint; } @@ -327,6 +328,7 @@ pub trait Float: Real fn is_normal(&self) -> bool; fn classify(&self) -> FPCategory; + // FIXME (#8888): Removing `unused_self` requires #8888 to be fixed. fn mantissa_digits(unused_self: Option<Self>) -> uint; fn digits(unused_self: Option<Self>) -> uint; fn epsilon() -> Self; |
