1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-13 08:35:20 +02:00

Replace usage of long long with u64/s64

This commit is contained in:
ShadowNinja
2014-03-12 19:37:19 -04:00
parent 7cac34c807
commit 18577f2527
7 changed files with 16 additions and 13 deletions

View File

@@ -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