Fix warnings.

This commit is contained in:
Sébastien Crozet 2014-11-07 19:23:46 +01:00
parent 83f25e0552
commit 15d1fa0b8b
2 changed files with 2 additions and 3 deletions

View File

@ -20,6 +20,7 @@ distcheck:
git clone --recursive . $(tmp)
make -C $(tmp)
make -C $(tmp) test
make -C $(tmp) bench
rm -rf $(tmp)
.PHONY:doc

View File

@ -3,10 +3,8 @@
extern crate test;
extern crate "nalgebra" as na;
use std::rand::{IsaacRng, Rng};
use test::Bencher;
use na::{Inv};
use na::{Vec2, Vec3, Vec4, Vec5, Vec6, DVec, Mat2, Mat3, Mat4, Mat5, Mat6, DMat};
use na::{DVec, DMat};
macro_rules! bench_mul_dmat(
($bh: expr, $nrows: expr, $ncols: expr) => {