freebsd-ports/games/battletanks/files/patch-math-range_list.h

20 lines
587 B
C
Raw Normal View History

--- math/range_list.h.orig 2008-10-24 22:15:55.000000000 +0800
+++ math/range_list.h 2014-01-15 15:44:11.000000000 +0800
@@ -53,14 +53,14 @@ public:
return;
}
- typename parent_type::iterator i = lower_bound(value);
+ typename parent_type::iterator i = this->lower_bound(value);
if (i != parent_type::end()) {
if (i->first == value)
return;
if (value + 1 == i->first) {
T e = i->second;
- erase(i);
+ this->erase(i);
i = parent_type::insert(typename parent_type::value_type(value, e)).first; //expand beginning
i = pack_left(i);
}