diff --git a/src/libcore/send_map.rs b/src/libcore/send_map.rs index 5c7b0643d3de..1e526c5d08f4 100644 --- a/src/libcore/send_map.rs +++ b/src/libcore/send_map.rs @@ -474,8 +474,12 @@ pub mod linear { } impl LinearSet: Eq { - pure fn eq(&self, other: &LinearSet) -> bool { self.map == other.map } - pure fn ne(&self, other: &LinearSet) -> bool { self.map != other.map } + pure fn eq(&self, other: &LinearSet) -> bool { + self.map == other.map + } + pure fn ne(&self, other: &LinearSet) -> bool { + self.map != other.map + } } impl LinearSet: Set {