Update to latest rust master

This commit is contained in:
Erick Tryzelaar
2014-11-17 19:21:46 -08:00
parent 18d943e8a7
commit ff8c8c77cc
8 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
use std::char;
use std::fmt;
use std::num;
use std::num::Float;
use std::str::ScalarValue;
use std::str;
@@ -319,7 +319,7 @@ impl<
}
}
let exp: f64 = num::pow(10u as f64, exp);
let exp: f64 = 10_f64.powi(exp as i32);
if neg_exp {
res /= exp;
} else {