From 221e58eca6d11dc36e9b72fd9027988faf08d950 Mon Sep 17 00:00:00 2001 From: Ken Tossell Date: Thu, 1 Jan 2015 17:11:21 -0500 Subject: [PATCH] Removed reflexive type specifier from Date's Eq implementation --- src/date.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/date.rs b/src/date.rs index eb4bcf1..840a84f 100644 --- a/src/date.rs +++ b/src/date.rs @@ -244,7 +244,7 @@ impl PartialEq> for Date { fn eq(&self, other: &Date) -> bool { self.date == other.date } } -impl Eq> for Date { +impl Eq for Date { } impl PartialOrd for Date {