diff --git a/src/vp.rs b/src/vp.rs index bf91d57..e0b218f 100644 --- a/src/vp.rs +++ b/src/vp.rs @@ -73,11 +73,7 @@ impl VpNode { } /// Push a new item into this subtree. - fn push(&mut self, item: T) - where - // https://github.com/rust-lang/rust/issues/72582 - T::Distance: PartialOrd + PartialOrd>, - { + fn push(&mut self, item: T) { match (&mut self.inside, &mut self.outside) { (None, None) => { self.outside = Some(Box::new(Self::new(item)));