You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-strategy/netpanzer/files/netpanzer-0.8.2-gcc47.patch

12 lines
399 B

--- 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 )