diff options
| author | pravic <[email protected]> | 2016-06-06 23:06:58 +0300 |
|---|---|---|
| committer | pravic <[email protected]> | 2016-06-06 23:06:58 +0300 |
| commit | 1c889bacaf6b132e605638c5a8f9a78bdf8c7e67 (patch) | |
| tree | 2b00929b29754929bfd86c868cd6cd6f1052c2bb /libcore/lib.rs | |
| parent | update to 2016-06-06 (diff) | |
| parent | apply libcore_nofp patch (diff) | |
| download | kmd-env-rs-1c889bacaf6b132e605638c5a8f9a78bdf8c7e67.tar.xz kmd-env-rs-1c889bacaf6b132e605638c5a8f9a78bdf8c7e67.zip | |
Merge branch 'nofp_patch' into libcore_nofp
Diffstat (limited to 'libcore/lib.rs')
| -rw-r--r-- | libcore/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libcore/lib.rs b/libcore/lib.rs index f2a297b..7ae6b30 100644 --- a/libcore/lib.rs +++ b/libcore/lib.rs @@ -110,7 +110,9 @@ mod uint_macros; #[path = "num/u32.rs"] pub mod u32; #[path = "num/u64.rs"] pub mod u64; +#[cfg(not(disable_float))] #[path = "num/f32.rs"] pub mod f32; +#[cfg(not(disable_float))] #[path = "num/f64.rs"] pub mod f64; #[macro_use] |