From c408d5a0b209ba121b961fe40b1e9f6fa2af711f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Mon, 18 Aug 2014 19:35:47 +0200 Subject: [PATCH] Update to the last rust-nightly. Version of rustc: 0.12.0-pre-nightly (01ec6fab2 2014-08-18 00:46:10 +0000). --- src/lib.rs | 1 - src/na.rs | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 736a952e..d0374b66 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -101,7 +101,6 @@ Feel free to add your project to this list if you happen to use **nalgebra**! #![feature(macro_rules)] #![doc(html_root_url = "http://nalgebra.org/doc")] -extern crate std; extern crate rand; extern crate serialize; diff --git a/src/na.rs b/src/na.rs index 2979fde3..ec4da3bc 100644 --- a/src/na.rs +++ b/src/na.rs @@ -38,7 +38,7 @@ pub use traits::{ Rotate, Rotation, RotationMatrix, RotationWithTranslation, Row, ScalarAdd, ScalarSub, - ScalarMul, ScalarAdd, + ScalarMul, ScalarDiv, ToHomogeneous, Transform, Transformation, Translate, Translation, @@ -82,7 +82,7 @@ pub use linalg::{ /// * `Mat4DivRhs` will allow the overload of the `/` operator between the implementor type and /// `Mat4`. The `Mat4` being the first argument of the division. pub mod overload { - pub use structs::{Vec1SubRhs, Vec2MulRhs, Vec3MulRhs, Vec4MulRhs, Vec5MulRhs, Vec6MulRhs, + pub use structs::{Vec1MulRhs, Vec2MulRhs, Vec3MulRhs, Vec4MulRhs, Vec5MulRhs, Vec6MulRhs, Vec1DivRhs, Vec2DivRhs, Vec3DivRhs, Vec4DivRhs, Vec5DivRhs, Vec6DivRhs, Vec1AddRhs, Vec2AddRhs, Vec3AddRhs, Vec4AddRhs, Vec5AddRhs, Vec6AddRhs, Vec1SubRhs, Vec2SubRhs, Vec3SubRhs, Vec4SubRhs, Vec5SubRhs, Vec6SubRhs,