diff options
author | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-08-17 23:02:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-17 23:02:50 +0200 |
commit | 13e995b811e80dc48c0769274d3dca3a2221b843 (patch) | |
tree | b75e58314fa98b57d23fefd92547f298ea419e5f /src/database-postgresql.h | |
parent | 921151d97a2fb2238ab514324fb95e2732248b96 (diff) | |
download | minetest-13e995b811e80dc48c0769274d3dca3a2221b843.tar.xz |
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)
Diffstat (limited to 'src/database-postgresql.h')
-rw-r--r-- | src/database-postgresql.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/database-postgresql.h b/src/database-postgresql.h index 94d651e24..db0b505c9 100644 --- a/src/database-postgresql.h +++ b/src/database-postgresql.h @@ -111,7 +111,7 @@ class MapDatabasePostgreSQL : private Database_PostgreSQL, public MapDatabase { public: MapDatabasePostgreSQL(const std::string &connect_string); - virtual ~MapDatabasePostgreSQL() {} + virtual ~MapDatabasePostgreSQL() = default; bool saveBlock(const v3s16 &pos, const std::string &data); void loadBlock(const v3s16 &pos, std::string *block); @@ -130,7 +130,7 @@ class PlayerDatabasePostgreSQL : private Database_PostgreSQL, public PlayerDatab { public: PlayerDatabasePostgreSQL(const std::string &connect_string); - virtual ~PlayerDatabasePostgreSQL() {} + virtual ~PlayerDatabasePostgreSQL() = default; void savePlayer(RemotePlayer *player); bool loadPlayer(RemotePlayer *player, PlayerSAO *sao); |