Add couple of missing header files needed by GCC 4.7.

This commit is contained in:
Jesse Jaara 2012-10-02 23:29:40 +03:00
parent b98f5faace
commit 1ba412d3ba
2 changed files with 3 additions and 1 deletions

View File

@ -11,6 +11,7 @@
#include <algorithm> #include <algorithm>
#include <locale> #include <locale>
#include <fstream> #include <fstream>
#include <unistd.h>
#include "Config.h" #include "Config.h"
#include "Format.h" #include "Format.h"
#include "LuaLuna.h" #include "LuaLuna.h"
@ -1703,4 +1704,4 @@ std::string LuaScriptInterface::FormatCommand(std::string command)
LuaScriptInterface::~LuaScriptInterface() { LuaScriptInterface::~LuaScriptInterface() {
delete legacy; delete legacy;
} }

View File

@ -10,6 +10,7 @@
#define The_Powder_Toy_StructProperty_h #define The_Powder_Toy_StructProperty_h
#include <string> #include <string>
#include <stdint.h>
struct StructProperty struct StructProperty
{ {