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:
@@ -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
|
||||
|
Reference in New Issue
Block a user