diff options
| author | pravic <[email protected]> | 2016-04-12 17:48:41 +0300 |
|---|---|---|
| committer | pravic <[email protected]> | 2016-04-12 17:48:41 +0300 |
| commit | c868536ae3f7c468ab62e4853e806d6d4150bdc5 (patch) | |
| tree | 9f2b0fbe414eb81dc1cdd92aa5754e9063bf2c20 /libcore/clone.rs | |
| parent | add libcore from 2016-04-11 nightly (diff) | |
| download | kmd-env-rs-c868536ae3f7c468ab62e4853e806d6d4150bdc5.tar.xz kmd-env-rs-c868536ae3f7c468ab62e4853e806d6d4150bdc5.zip | |
apply libcore_nofp patch
Diffstat (limited to 'libcore/clone.rs')
| -rw-r--r-- | libcore/clone.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libcore/clone.rs b/libcore/clone.rs index a793502..6fb733f 100644 --- a/libcore/clone.rs +++ b/libcore/clone.rs @@ -105,7 +105,9 @@ clone_impl! { u16 } clone_impl! { u32 } clone_impl! { u64 } +#[cfg(not(disable_float))] clone_impl! { f32 } +#[cfg(not(disable_float))] clone_impl! { f64 } clone_impl! { () } |