diff options
| author | bors <bors@rust-lang.org> | 2014-01-09 05:06:33 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-01-09 05:06:33 -0800 |
| commit | ab9ec6d59a0e5e79e553e0e4570a28ded1ead1aa (patch) | |
| tree | 5e07a6413e9cd17fa3d5efcde3b2488b7c802478 /src/libstd/lib.rs | |
| parent | fb44e20f657302e9b69101d0c26b095636349d38 (diff) | |
| parent | ceea85a148ec3426edfc00b8353a19c1d2df5dbf (diff) | |
auto merge of #11402 : bjz/rust/remove-approx, r=alexcrichton
This trait seems to stray too far from the mandate of a standard library as implementations may vary between use cases. Third party libraries should implement their own if they need something like it. This closes #5316. r? @alexcrichton, @pcwalton
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 112a380c243..8a4d102e7be 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -85,6 +85,7 @@ pub mod prelude; /* Primitive types */ +#[path = "num/float_macros.rs"] mod float_macros; #[path = "num/int_macros.rs"] mod int_macros; #[path = "num/uint_macros.rs"] mod uint_macros; |
