summaryrefslogtreecommitdiff
path: root/games-strategy/netpanzer/files/netpanzer-0.8.2-gcc47.patch
blob: 432f40a9f9aa77887dcb8fd6ffe095d67a8b5a94 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- src/Lib/ArrayUtil/QueueTemplate.hpp.old	2012-10-16 13:57:33.000000000 +0200
+++ src/Lib/ArrayUtil/QueueTemplate.hpp	2012-10-16 13:58:16.000000000 +0200
@@ -42,7 +42,7 @@
 
     bool enqueue(const TYPE& object )
     {
-        add( object, (rear + 1) % this->size );
+        this->add( object, (rear + 1) % this->size );
         rear = (rear + 1) % this->size;
 
         if ( front == rear )