diff options
| author | pravic <[email protected]> | 2016-04-29 21:26:11 +0300 |
|---|---|---|
| committer | pravic <[email protected]> | 2016-04-29 21:26:11 +0300 |
| commit | 676cada527e5723dba925685822baee34bc5ec2f (patch) | |
| tree | df0fb7476a440a939f3d9129c0633c372d88e9cb /libcore/clone.rs | |
| parent | update libcore to 2016-04-29 nightly (diff) | |
| parent | apply libcore_nofp patch (diff) | |
| download | kmd-env-rs-676cada527e5723dba925685822baee34bc5ec2f.tar.xz kmd-env-rs-676cada527e5723dba925685822baee34bc5ec2f.zip | |
Merge branch 'libcore'
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 ad2a205..a9c5684 100644 --- a/libcore/clone.rs +++ b/libcore/clone.rs @@ -116,7 +116,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! { () } |