Removed reflexive type specifier from Date<Off>'s Eq implementation

This commit is contained in:
Ken Tossell 2015-01-01 17:11:21 -05:00
parent 6a2bc2492e
commit 221e58eca6
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ impl<Off:Offset, Off2:Offset> PartialEq<Date<Off2>> for Date<Off> {
fn eq(&self, other: &Date<Off2>) -> bool { self.date == other.date }
}
impl<Off:Offset, Off2:Offset> Eq<Date<Off2>> for Date<Off> {
impl<Off:Offset> Eq for Date<Off> {
}
impl<Off:Offset> PartialOrd for Date<Off> {