about summary refs log tree commit diff
path: root/src/libstd/bool.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/bool.rs')
-rw-r--r--src/libstd/bool.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libstd/bool.rs b/src/libstd/bool.rs
index b8175e43fb6..926e6e1f6b6 100644
--- a/src/libstd/bool.rs
+++ b/src/libstd/bool.rs
@@ -321,8 +321,6 @@ impl TotalOrd for bool {
 impl Eq for bool {
     #[inline]
     fn eq(&self, other: &bool) -> bool { (*self) == (*other) }
-    #[inline]
-    fn ne(&self, other: &bool) -> bool { (*self) != (*other) }
 }
 
 #[cfg(not(test))]