1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-14 07:43:06 +00:00
freebsd-ports/games/gma/files/patch-moves.h
Pawel Pekala 8f8daf14a3 - Fix build with clang
- Add LICENSE
- Switch to PLIST_FILES

PR:		ports/184905
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2013-12-24 15:04:04 +00:00

14 lines
169 B
C++

--- src/moves.h.orig
+++ src/moves.h
@@ -24,7 +24,9 @@
#include "pattern.h"
-#include <stl.h>
+#include <map>
+
+using std::map;
class Moves:map<Pattern,int>
{