Remove Eq from dimensional trait
This commit is contained in:
parent
788420b33f
commit
d85c968620
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
use core::cmp::Eq;
|
||||
|
||||
pub trait Dimensional<T>: Eq, Index<uint, T> {
|
||||
pub trait Dimensional<T>: Index<uint, T> {
|
||||
static pure fn dim() -> uint;
|
||||
pure fn to_ptr() -> *T;
|
||||
}
|
Loading…
Reference in a new issue