about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Ronald Altman <alexanderaltman@me.com>2019-01-16 23:03:29 -0600
committerAlexander Ronald Altman <alexanderaltman@me.com>2019-01-16 23:03:29 -0600
commitfefe1dacb6255304dab5c13fb669b1d9d40f9e03 (patch)
tree47ee07538936d47f02501d09765d335ad01fda9f /src
parent22251a87be74865cc977f3fdcc995c1c467361c7 (diff)
downloadrust-fefe1dacb6255304dab5c13fb669b1d9d40f9e03.tar.gz
rust-fefe1dacb6255304dab5c13fb669b1d9d40f9e03.zip
Fix tidy errors.
Diffstat (limited to 'src')
-rw-r--r--src/libcore/pin.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libcore/pin.rs b/src/libcore/pin.rs
index 022481f4635..7c09a36d898 100644
--- a/src/libcore/pin.rs
+++ b/src/libcore/pin.rs
@@ -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
     }
@@ -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)
     }