diff options
author | Adam <Adam@anope.org> | 2017-04-06 11:39:35 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2017-04-06 11:39:35 -0400 |
commit | 7f5cb607af73a4134a158a14006bdc3e202d0a34 (patch) | |
tree | be7a55aa6afbd8ee363dced53aa9c0a69bfb36a3 /modules/sqlite.cpp | |
parent | 805ea3869c33889de3695c580b85e10d9a4bc147 (diff) |
Fix some more compiler warnings
Diffstat (limited to 'modules/sqlite.cpp')
-rw-r--r-- | modules/sqlite.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/sqlite.cpp b/modules/sqlite.cpp index 95af6e39a..41123adb3 100644 --- a/modules/sqlite.cpp +++ b/modules/sqlite.cpp @@ -86,7 +86,7 @@ class SQLiteService : public Provider void Run(Interface *i, const Query &query) override; - Result RunQuery(const Query &query); + Result RunQuery(const Query &query) override; std::vector<Query> InitSchema(const Anope::string &prefix) override; std::vector<Query> Replace(const Anope::string &table, const Query &, const std::set<Anope::string> &) override; @@ -100,7 +100,7 @@ class SQLiteService : public Provider Serialize::ID GetID(const Anope::string &prefix, const Anope::string &type) override; - Query GetTables(const Anope::string &prefix); + Query GetTables(const Anope::string &prefix) override; Anope::string BuildQuery(const Query &q); @@ -113,7 +113,7 @@ class ModuleSQLite : public Module std::map<Anope::string, SQLiteService *> SQLiteServices; public: - ModuleSQLite(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, EXTRA | VENDOR) + ModuleSQLite(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR) { } |