From d85c9686203b3569306ee829c60770592f0e44aa Mon Sep 17 00:00:00 2001 From: Brendan Zabarauskas Date: Thu, 15 Nov 2012 13:16:44 +1000 Subject: [PATCH] Remove Eq from dimensional trait --- src/dim.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dim.rs b/src/dim.rs index 03cb53a..442ed72 100644 --- a/src/dim.rs +++ b/src/dim.rs @@ -1,6 +1,6 @@ use core::cmp::Eq; -pub trait Dimensional: Eq, Index { +pub trait Dimensional: Index { static pure fn dim() -> uint; pure fn to_ptr() -> *T; } \ No newline at end of file