Update to the last rust-nightly.

Version of rustc: 0.13.0-nightly (222ae8b9b 2014-10-18 00:47:22 +0000).
This commit is contained in:
Sébastien Crozet 2014-10-18 20:52:35 +02:00
parent 8288ebdfab
commit 276bf3f999
4 changed files with 1 additions and 6 deletions

View File

@ -107,8 +107,6 @@ extern crate serialize;
#[cfg(test)]
extern crate test;
#[cfg(test)]
extern crate debug;
use std::num::{Zero, One, FloatMath};
use std::cmp;

View File

@ -1,6 +1,5 @@
#![feature(macro_rules)]
extern crate debug;
extern crate "nalgebra" as na;
use std::num::{Float, abs};
@ -247,7 +246,7 @@ fn test_dmat_from_vec() {
]
);
println!("mat1: {:?}, mat2: {:?}", mat1, mat2);
println!("mat1: {}, mat2: {}", mat1, mat2);
assert!(mat1 == mat2);
}

View File

@ -1,6 +1,5 @@
#![feature(macro_rules)]
extern crate debug;
extern crate "nalgebra" as na;
use na::{Pnt3, Vec3, Rot3, UnitQuat, Rotation};

View File

@ -1,6 +1,5 @@
#![feature(macro_rules)]
extern crate debug;
extern crate "nalgebra" as na;
use std::rand::random;