libcore: Fix signature of the impl for *T

This commit is contained in:
Patrick Walton 2012-08-27 17:37:41 -07:00
parent daf10a2a6c
commit 32b13ce2ce

View File

@ -172,7 +172,7 @@ impl<T> *T: Ptr {
}
// Equality for pointers
impl<T: Eq> *T : Eq {
impl<T> *T : Eq {
pure fn eq(&&other: *T) -> bool { self == other }
}