freebsd-ports/games/groundhog/files/patch-src__pocket.h
Edwin Groothuis f99d409934 Make port working on 5.3 and higher (finally)
Thanks to the debian package for the g++ patches.
2005-10-29 13:48:50 +00:00

19 lines
381 B
C++

--- src/pocket.h.orig Sun Oct 30 00:51:58 2005
+++ src/pocket.h Sun Oct 30 00:52:09 2005
@@ -20,6 +20,7 @@
#define _POCKET_H_
#include <list>
+using namespace std;
#include <gtk/gtk.h>
@@ -54,7 +55,7 @@
};
class SetOffPockets {
- std::list<Pocket*> _set;
+ list<Pocket*> _set;
public:
SetOffPockets() {}
void Add(Pocket* pocket) {_set.push_back(pocket);}