auto merge of #9369 : sebcrozet/rust/f64_inline, r=thestinger

This was, somehow, missed by #8332.
This commit is contained in:
bors 2013-09-21 06:05:56 -07:00
commit 650100dfbf
1 changed files with 1 additions and 0 deletions

View File

@ -307,6 +307,7 @@ impl Rem<f64,f64> for f64 {
}
#[cfg(not(test))]
impl Neg<f64> for f64 {
#[inline]
fn neg(&self) -> f64 { -*self }
}