diff options
author | Stijn Buys <ingar@osirion.org> | 2013-12-08 23:07:58 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2013-12-08 23:07:58 +0000 |
commit | 4fad0180606df181447b7578bbc13e48465acd35 (patch) | |
tree | e9b1e8dfb3db49d7d6fee8abcfff31297f9f737d | |
parent | 415f22238a2c4d5734f78db2f7e8831e2efd2e92 (diff) |
Make the mingw build happy.
-rw-r--r-- | src/game/base/faction.cc | 2 | ||||
-rw-r--r-- | src/game/base/npc.cc | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/game/base/faction.cc b/src/game/base/faction.cc index 2dd8a1a..5b89e8c 100644 --- a/src/game/base/faction.cc +++ b/src/game/base/faction.cc @@ -9,6 +9,8 @@ #include "core/range.h" #include "base/faction.h" +#include <cassert> + namespace game { core::InfoType *Faction::faction_infotype = 0; diff --git a/src/game/base/npc.cc b/src/game/base/npc.cc index bb716c9..44cad7c 100644 --- a/src/game/base/npc.cc +++ b/src/game/base/npc.cc @@ -10,6 +10,8 @@ #include "base/game.h" #include "base/patrol.h" +#include <cassert> + namespace game { // NPC Wingman factory function |