diff options
Diffstat (limited to 'src/database-dummy.h')
-rw-r--r-- | src/database-dummy.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/database-dummy.h b/src/database-dummy.h index 1474a4a90..c0bee97c0 100644 --- a/src/database-dummy.h +++ b/src/database-dummy.h @@ -20,9 +20,10 @@ with this program; if not, write to the Free Software Foundation, Inc., #ifndef DATABASE_DUMMY_HEADER #define DATABASE_DUMMY_HEADER -#include "database.h" #include <map> #include <string> +#include "database.h" +#include "irrlichttypes.h" class ServerMap; @@ -39,6 +40,6 @@ public: ~Database_Dummy(); private: ServerMap *srvmap; - std::map<unsigned long long, std::string> m_database; + std::map<u64, std::string> m_database; }; #endif |