ports/benchmarks/polygraph/files/patch-src_xstd_Heap.h
John Marino 558580ea92 benchmarks/polygraph: Fix c++ errors caught by modern compilers
There were two scope issues caught by -fpermissions and another case
of a redeclared variabled, all of which are caught on recent gcc.

Approved by:	portmgr (bapt, implicit)
2013-10-01 22:16:39 +00:00

11 lines
533 B
C

--- src/xstd/Heap.h.orig 2011-04-04 22:07:36.000000000 +0000
+++ src/xstd/Heap.h
@@ -23,7 +23,7 @@ class Heap: protected Array<Item> {
const Item &top() const { return this->theItems[1]; }
Item &at(int idx) { return this->theItems[idx+1]; }
- void add(Item v) { append(v); floatUp(++theCnt); }
+ void add(Item v) { this->append(v); floatUp(++theCnt); }
void skip() { this->theItems[1] = this->theItems[theCnt--]; this->theCount--; sinkDown(1); }
Item shift() { const Item v = this->theItems[1]; skip(); return v; }