Update to the last rust-nightly.

Version of rustc: 0.12.0-pre-nightly (01ec6fab2 2014-08-18 00:46:10 +0000).
This commit is contained in:
Sébastien Crozet 2014-08-18 19:35:47 +02:00
parent ff95e2a9d8
commit c408d5a0b2
2 changed files with 2 additions and 3 deletions

View File

@ -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;

View File

@ -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,