Remove Eq from dimensional trait

This commit is contained in:
Brendan Zabarauskas 2012-11-15 13:16:44 +10:00
parent 788420b33f
commit d85c968620

View file

@ -1,6 +1,6 @@
use core::cmp::Eq; use core::cmp::Eq;
pub trait Dimensional<T>: Eq, Index<uint, T> { pub trait Dimensional<T>: Index<uint, T> {
static pure fn dim() -> uint; static pure fn dim() -> uint;
pure fn to_ptr() -> *T; pure fn to_ptr() -> *T;
} }