about summary refs log tree commit diff
path: root/src/libstd/managed.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/managed.rs')
-rw-r--r--src/libstd/managed.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/libstd/managed.rs b/src/libstd/managed.rs
index 141ed7a9206..bf73c05440c 100644
--- a/src/libstd/managed.rs
+++ b/src/libstd/managed.rs
@@ -45,10 +45,7 @@ impl<T: TotalOrd> TotalOrd for @T {
 }
 
 #[cfg(not(test))]
-impl<T: TotalEq> TotalEq for @T {
-    #[inline]
-    fn equals(&self, other: &@T) -> bool { (**self).equals(*other) }
-}
+impl<T: TotalEq> TotalEq for @T {}
 
 #[test]
 fn test() {