ports/graphics/blender/files/patch-extern_rangetree_range_tree.hh
Marcus von Appen e08dba80e2 - Update to version 2.69
- 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>
2013-11-15 16:58:02 +00:00

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;
}