Merge pull request #4557 from thestinger/tidy-fix

fix long lines
This commit is contained in:
Tim Chevalier 2013-01-20 14:09:49 -08:00
commit b428cd55b8

View File

@ -474,8 +474,12 @@ impl <T: Hash IterBytes Eq> LinearSet<T>: BaseIter<T> {
} }
impl <T: Hash IterBytes Eq> LinearSet<T>: Eq { impl <T: Hash IterBytes Eq> LinearSet<T>: Eq {
pure fn eq(&self, other: &LinearSet<T>) -> bool { self.map == other.map } pure fn eq(&self, other: &LinearSet<T>) -> bool {
pure fn ne(&self, other: &LinearSet<T>) -> bool { self.map != other.map } self.map == other.map
}
pure fn ne(&self, other: &LinearSet<T>) -> bool {
self.map != other.map
}
} }
impl <T: Hash IterBytes Eq> LinearSet<T>: Set<T> { impl <T: Hash IterBytes Eq> LinearSet<T>: Set<T> {