From 24e1862a9edb55d5bc562346c42d163fd8f0e7cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Tue, 13 Aug 2013 10:57:19 +0200 Subject: [PATCH] Fix to work with the last Rust deriving. --- src/dvec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dvec.rs b/src/dvec.rs index d76d3505..0a6a9b0d 100644 --- a/src/dvec.rs +++ b/src/dvec.rs @@ -13,7 +13,7 @@ use traits::translation::{Translation, Translatable}; use traits::scalar_op::{ScalarMul, ScalarDiv, ScalarAdd, ScalarSub}; /// Vector with a dimension unknown at compile-time. -#[deriving(Eq, Ord, ToStr, Clone)] +#[deriving(Eq, ToStr, Clone)] pub struct DVec { /// Components of the vector. Contains as much elements as the vector dimension. at: ~[N]