1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 03:36:37 +02:00

Replace anope_{final,override} with their C++11 equivalent.

This commit is contained in:
Sadie Powell
2022-01-03 16:50:06 +00:00
parent d76d747196
commit a5f7aac295
202 changed files with 1517 additions and 1528 deletions
+3 -3
View File
@@ -53,11 +53,11 @@ class SQLiteService : public Provider
~SQLiteService();
void Run(Interface *i, const Query &query) anope_override;
void Run(Interface *i, const Query &query) override;
Result RunQuery(const Query &query);
std::vector<Query> CreateTable(const Anope::string &table, const Data &data) anope_override;
std::vector<Query> CreateTable(const Anope::string &table, const Data &data) override;
Query BuildInsert(const Anope::string &table, unsigned int id, Data &data);
@@ -84,7 +84,7 @@ class ModuleSQLite : public Module
SQLiteServices.clear();
}
void OnReload(Configuration::Conf *conf) anope_override
void OnReload(Configuration::Conf *conf) override
{
Configuration::Block *config = conf->GetModule(this);