Skip to content

Commit

Permalink
Fix tidy errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
pthariensflame committed Jan 17, 2019
1 parent 22251a8 commit fefe1da
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/libcore/pin.rs
Expand Up @@ -129,7 +129,6 @@ impl<P, Q> PartialEq<Pin<Q>> for Pin<P>
where
P: PartialEq<Q>,
{

fn eq(&self, other: &Pin<Q>) -> bool {
self.pointer == other.pointer
}
Expand All @@ -144,7 +143,6 @@ impl<P, Q> PartialOrd<Pin<Q>> for Pin<P>
where
P: PartialOrd<Q>,
{

fn partial_cmp(&self, other: &Pin<Q>) -> Option<cmp::Ordering> {
self.pointer.partial_cmp(&other.pointer)
}
Expand Down

0 comments on commit fefe1da

Please sign in to comment.