forked from Mirrorlandia_minetest/minetest
Fix lint since recent player to db merge
This commit is contained in:
parent
29ab20c272
commit
d7ddceac73
@ -27,8 +27,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||||||
#include "filesys.h"
|
#include "filesys.h"
|
||||||
|
|
||||||
// !!! WARNING !!!
|
// !!! WARNING !!!
|
||||||
// This backend is intended to be used on Minetest 0.4.16 only for the transition backend for
|
// This backend is intended to be used on Minetest 0.4.16 only for the transition backend
|
||||||
// player files
|
// for player files
|
||||||
|
|
||||||
void PlayerDatabaseFiles::serialize(std::ostringstream &os, RemotePlayer *player)
|
void PlayerDatabaseFiles::serialize(std::ostringstream &os, RemotePlayer *player)
|
||||||
{
|
{
|
||||||
|
@ -21,8 +21,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||||||
#define DATABASE_FILES_HEADER
|
#define DATABASE_FILES_HEADER
|
||||||
|
|
||||||
// !!! WARNING !!!
|
// !!! WARNING !!!
|
||||||
// This backend is intended to be used on Minetest 0.4.16 only for the transition backend for
|
// This backend is intended to be used on Minetest 0.4.16 only for the transition backend
|
||||||
// player files
|
// for player files
|
||||||
|
|
||||||
#include "database.h"
|
#include "database.h"
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ enum RemotePlayerChatResult
|
|||||||
class RemotePlayer : public Player
|
class RemotePlayer : public Player
|
||||||
{
|
{
|
||||||
friend class PlayerDatabaseFiles;
|
friend class PlayerDatabaseFiles;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
RemotePlayer(const char *name, IItemDefManager *idef);
|
RemotePlayer(const char *name, IItemDefManager *idef);
|
||||||
virtual ~RemotePlayer() {}
|
virtual ~RemotePlayer() {}
|
||||||
|
@ -51,11 +51,13 @@ src/craftdef.cpp
|
|||||||
src/craftdef.h
|
src/craftdef.h
|
||||||
src/database.cpp
|
src/database.cpp
|
||||||
src/database-dummy.cpp
|
src/database-dummy.cpp
|
||||||
|
src/database-files.cpp
|
||||||
src/database-leveldb.cpp
|
src/database-leveldb.cpp
|
||||||
src/database-postgresql.cpp
|
src/database-postgresql.cpp
|
||||||
src/database-postgresql.h
|
src/database-postgresql.h
|
||||||
src/database-redis.cpp
|
src/database-redis.cpp
|
||||||
src/database-sqlite3.cpp
|
src/database-sqlite3.cpp
|
||||||
|
src/database-sqlite3.h
|
||||||
src/daynightratio.h
|
src/daynightratio.h
|
||||||
src/debug.cpp
|
src/debug.cpp
|
||||||
src/debug.h
|
src/debug.h
|
||||||
|
Loading…
Reference in New Issue
Block a user