summaryrefslogtreecommitdiff
path: root/games-strategy/netpanzer/files/netpanzer-0.8.2-gcc47.patch
diff options
context:
space:
mode:
Diffstat (limited to 'games-strategy/netpanzer/files/netpanzer-0.8.2-gcc47.patch')
-rw-r--r--games-strategy/netpanzer/files/netpanzer-0.8.2-gcc47.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/games-strategy/netpanzer/files/netpanzer-0.8.2-gcc47.patch b/games-strategy/netpanzer/files/netpanzer-0.8.2-gcc47.patch
deleted file mode 100644
index 432f40a9f9aa..000000000000
--- a/games-strategy/netpanzer/files/netpanzer-0.8.2-gcc47.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- 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 )