diff options
| author | pravic <[email protected]> | 2016-04-29 21:25:33 +0300 |
|---|---|---|
| committer | pravic <[email protected]> | 2016-04-29 21:25:33 +0300 |
| commit | 8c8ef9d5b88377f345220e577ca78e1713b87539 (patch) | |
| tree | 9bf7ae22e9e635b67734aeb14226d4ed9e0b58c0 /libcore/lib.rs | |
| parent | add libcore from 2016-04-11 nightly (diff) | |
| download | kmd-env-rs-8c8ef9d5b88377f345220e577ca78e1713b87539.tar.xz kmd-env-rs-8c8ef9d5b88377f345220e577ca78e1713b87539.zip | |
apply libcore_nofp patch
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 fa5e905..e12c690 100644 --- a/libcore/lib.rs +++ b/libcore/lib.rs @@ -107,7 +107,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] |