diff options
| author | Eduard Burtescu <edy.burt@gmail.com> | 2016-06-01 12:22:07 +0300 |
|---|---|---|
| committer | Eduard Burtescu <edy.burt@gmail.com> | 2016-06-05 19:18:28 +0300 |
| commit | c77166c68547863db87f38e6a47c33f343980ee8 (patch) | |
| tree | e9664bdbc44440b48c302e0faaab82fcd3fc044b /src/librustc_const_math/lib.rs | |
| parent | 27673610a60c4aa538a92647ec9125b04f653fe4 (diff) | |
| download | rust-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.rs | 2 |
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::*; |
