diff options
author | Sadie Powell <sadie@witchery.services> | 2023-12-17 13:59:49 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2023-12-17 13:59:49 +0000 |
commit | 6538641e8703084460df70d04196ac271eff1266 (patch) | |
tree | 2bf8ab8fdd0fb4839d86607826bc09c3366e3870 /modules/extra/m_sqlite.cpp | |
parent | eb0e5c89b2a1e59091001ffd0e54582c2ff04212 (diff) |
Remove some unnecessary spaces that break editor indentation.
Diffstat (limited to 'modules/extra/m_sqlite.cpp')
-rw-r--r-- | modules/extra/m_sqlite.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/extra/m_sqlite.cpp b/modules/extra/m_sqlite.cpp index 28c9d6ed5..c64d42a8d 100644 --- a/modules/extra/m_sqlite.cpp +++ b/modules/extra/m_sqlite.cpp @@ -21,7 +21,7 @@ using namespace SQL; */ class SQLiteResult : public Result { - public: +public: SQLiteResult(unsigned int i, const Query &q, const Anope::string &fq) : Result(i, q, fq) { } @@ -48,7 +48,7 @@ class SQLiteService : public Provider Anope::string Escape(const Anope::string &query); - public: +public: SQLiteService(Module *o, const Anope::string &n, const Anope::string &d); ~SQLiteService(); @@ -72,7 +72,7 @@ class ModuleSQLite : public Module { /* SQL connections */ std::map<Anope::string, SQLiteService *> SQLiteServices; - public: +public: ModuleSQLite(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, EXTRA | VENDOR) { } |