From 13e995b811e80dc48c0769274d3dca3a2221b843 Mon Sep 17 00:00:00 2001 From: Loïc Blot Date: Thu, 17 Aug 2017 23:02:50 +0200 Subject: Modernize src/c* src/d* and src/e* files (#6263) * Modernize src/c* src/d* and src/e* files * default operator * redundant init * delete default constructors on CraftDefinition childs (never used) * fix some missing init values * const ref fix reported by clang-tidy * ranged-based for loops * simple conditions & returns * empty stl function instead of size * emplace_back stl function instead of push_back + construct temp obj * auto for some iterators * code style fixes * c++ stl headers instead of C stl headers (stdio.h -> cstdio) --- src/database.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/database.h') diff --git a/src/database.h b/src/database.h index 867bca07f..9926c7b93 100644 --- a/src/database.h +++ b/src/database.h @@ -36,7 +36,7 @@ public: class MapDatabase : public Database { public: - virtual ~MapDatabase() {} + virtual ~MapDatabase() = default; virtual bool saveBlock(const v3s16 &pos, const std::string &data) = 0; virtual void loadBlock(const v3s16 &pos, std::string *block) = 0; @@ -54,7 +54,8 @@ class RemotePlayer; class PlayerDatabase { public: - virtual ~PlayerDatabase() {} + virtual ~PlayerDatabase() = default; + virtual void savePlayer(RemotePlayer *player) = 0; virtual bool loadPlayer(RemotePlayer *player, PlayerSAO *sao) = 0; virtual bool removePlayer(const std::string &name) = 0; -- cgit v1.2.3