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]