mirror of
https://git.freebsd.org/ports.git
synced 2025-06-14 17:20:29 -04:00
- Add LICENSE - Switch to new LIB_DEPENDS format - Enabling staging support - Simplify OPTION knob handling - Unbreak the build on 8.x, 10.x and CURRENT after the update of graphics/opencv and graphics/openshadinglanguage, which require llvm3.3 Supported by: tijl@, Shane Ambler <FreeBSD@ShaneWare.Biz>
15 lines
430 B
C++
15 lines
430 B
C++
--- extern/rangetree/range_tree.hh.orig 2013-11-12 09:41:41.000000000 +0100
|
|
+++ extern/rangetree/range_tree.hh 2013-11-12 21:47:07.000000000 +0100
|
|
@@ -35,6 +35,12 @@
|
|
: min(t), max(t), single(true)
|
|
{}
|
|
|
|
+ Range& operator=(const Range& v) {
|
|
+ *this = v;
|
|
+ return *this;
|
|
+ }
|
|
+
|
|
+
|
|
bool operator<(const Range& v) const {
|
|
return max < v.min;
|
|
}
|