ports/games/blokish/files/patch-src_ai.cpp
Mark Linimon 9ac682b64b - <sys/limits.h> is not in POSIX unlike <limits.h>
- "ai.h" doesn't need the fix unlike ai.cpp, so move both below

Reported by:	jbeich
Approved by:	portmgr (tier-2 blanket)
2018-11-27 20:01:06 +00:00

11 lines
219 B
C++

--- src/ai.cpp.orig 2018-10-31 18:46:12 UTC
+++ src/ai.cpp
@@ -22,6 +22,8 @@
/* This file is contains the AI logic.
*/
#include "ai.h"
+#include <algorithm>
+#include <sys/limits.h>
AI::AI(BlokishBoard &board)