Skip to content

Commit fefe1da

Browse files
Fix tidy errors.
1 parent 22251a8 commit fefe1da

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/libcore/pin.rs

-2
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ impl<P, Q> PartialEq<Pin<Q>> for Pin<P>
129129
where
130130
P: PartialEq<Q>,
131131
{
132-
133132
fn eq(&self, other: &Pin<Q>) -> bool {
134133
self.pointer == other.pointer
135134
}
@@ -144,7 +143,6 @@ impl<P, Q> PartialOrd<Pin<Q>> for Pin<P>
144143
where
145144
P: PartialOrd<Q>,
146145
{
147-
148146
fn partial_cmp(&self, other: &Pin<Q>) -> Option<cmp::Ordering> {
149147
self.pointer.partial_cmp(&other.pointer)
150148
}

0 commit comments

Comments
 (0)