summaryrefslogtreecommitdiff
path: root/src/database-sqlite3.h
diff options
context:
space:
mode:
authorLoïc Blot <nerzhul@users.noreply.github.com>2017-04-01 14:48:16 +0200
committerGitHub <noreply@github.com>2017-04-01 14:48:16 +0200
commit987eb2b7615104f3f70e56e51f1dd3df5b2a41eb (patch)
tree8bc37ba6257442f190248c38651db38c6c87cb6e /src/database-sqlite3.h
parent63ac62ec8abe30f0d6dd2cfe0ddaab291c36893f (diff)
downloadminetest-987eb2b7615104f3f70e56e51f1dd3df5b2a41eb.tar.gz
minetest-987eb2b7615104f3f70e56e51f1dd3df5b2a41eb.tar.bz2
minetest-987eb2b7615104f3f70e56e51f1dd3df5b2a41eb.zip
Clang-format: trivial fix on some headers (#5495)
Fix some headers style and remove them from whitelist
Diffstat (limited to 'src/database-sqlite3.h')
-rw-r--r--src/database-sqlite3.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/database-sqlite3.h b/src/database-sqlite3.h
index debbc9d8b..2ab4c8ee9 100644
--- a/src/database-sqlite3.h
+++ b/src/database-sqlite3.h
@@ -20,11 +20,11 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#ifndef DATABASE_SQLITE3_HEADER
#define DATABASE_SQLITE3_HEADER
-#include "database.h"
#include <string>
+#include "database.h"
extern "C" {
- #include "sqlite3.h"
+#include "sqlite3.h"
}
class Database_SQLite3 : public Database
@@ -50,7 +50,7 @@ private:
// Open and initialize the database if needed
void verifyDatabase();
- void bindPos(sqlite3_stmt *stmt, const v3s16 &pos, int index=1);
+ void bindPos(sqlite3_stmt *stmt, const v3s16 &pos, int index = 1);
bool m_initialized;
@@ -70,4 +70,3 @@ private:
};
#endif
-