about summary refs log tree commit diff
path: root/src/librustc_const_math/lib.rs
diff options
context:
space:
mode:
authorEduard Burtescu <edy.burt@gmail.com>2016-06-01 12:22:07 +0300
committerEduard Burtescu <edy.burt@gmail.com>2016-06-05 19:18:28 +0300
commitc77166c68547863db87f38e6a47c33f343980ee8 (patch)
treee9664bdbc44440b48c302e0faaab82fcd3fc044b /src/librustc_const_math/lib.rs
parent27673610a60c4aa538a92647ec9125b04f653fe4 (diff)
downloadrust-c77166c68547863db87f38e6a47c33f343980ee8.tar.gz
rust-c77166c68547863db87f38e6a47c33f343980ee8.zip
rustc_const_eval: work around double rounding.
Diffstat (limited to 'src/librustc_const_math/lib.rs')
-rw-r--r--src/librustc_const_math/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/librustc_const_math/lib.rs b/src/librustc_const_math/lib.rs
index 59792d16e8b..741dd4107e0 100644
--- a/src/librustc_const_math/lib.rs
+++ b/src/librustc_const_math/lib.rs
@@ -32,11 +32,13 @@
 
 extern crate serialize as rustc_serialize; // used by deriving
 
+mod float;
 mod int;
 mod us;
 mod is;
 mod err;
 
+pub use float::*;
 pub use int::*;
 pub use us::*;
 pub use is::*;