Remove superfluous type parameters

This commit is contained in:
Brendan Zabarauskas 2012-11-05 11:58:08 +10:00
parent 2790fda04e
commit 59d4b33691

View file

@ -18,7 +18,7 @@ fn test_Mat2() {
assert a == Mat2::from_cols(Vec2::new(1f, 3f),
Vec2::new(2f, 4f));
assert Mat2::from_value::<f64>(4f64) == Mat2::new::<f64>(4f64, 0f64,
assert Mat2::from_value(4f64) == Mat2::new(4f64, 0f64,
0f64, 4f64);
assert a[0] == Vec2::new(1f, 3f);