mirror of
https://git.freebsd.org/ports.git
synced 2025-05-01 02:56:39 -04:00
This fix/change was already implemented by upstream in cd7f7c12f13ecaf1ec4019cdcc56bddfb4f0677f. However, as it's not a standalone commit, we cannot pull in the upstream patch. PR: 284688 Approved by: manu (maintainer)
11 lines
433 B
C
11 lines
433 B
C
--- gui/quadtree.h.orig 2025-02-09 18:01:57 UTC
|
|
+++ gui/quadtree.h
|
|
@@ -226,7 +226,7 @@ template <typename CoordinateT, typename ElementT> cla
|
|
return *this;
|
|
bound_ = other.bound_;
|
|
max_elems_ = other.max_elems_;
|
|
- children_ = other.max_children_;
|
|
+ //children_ = other.max_children_;
|
|
children_ = other.children_;
|
|
splitx_ = other.splitx_;
|
|
splity_ = other.splity_;
|