From c78ecdf579c0bf0a75ed0f9641ffef8d89c17ec8 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Fri, 25 Jan 2019 02:52:11 +0000 Subject: Replace the override macro with the override keyword. --- src/modules/m_chanlog.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/modules/m_chanlog.cpp') diff --git a/src/modules/m_chanlog.cpp b/src/modules/m_chanlog.cpp index afe213f61..c7b288818 100644 --- a/src/modules/m_chanlog.cpp +++ b/src/modules/m_chanlog.cpp @@ -29,7 +29,7 @@ class ModuleChanLog : public Module ChanLogTargets logstreams; public: - void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE + void ReadConfig(ConfigStatus& status) override { std::string snomasks; std::string channel; @@ -56,7 +56,7 @@ class ModuleChanLog : public Module } - ModResult OnSendSnotice(char &sno, std::string &desc, const std::string &msg) CXX11_OVERRIDE + ModResult OnSendSnotice(char &sno, std::string &desc, const std::string &msg) override { std::pair itpair = logstreams.equal_range(sno); if (itpair.first == itpair.second) @@ -78,7 +78,7 @@ class ModuleChanLog : public Module return MOD_RES_PASSTHRU; } - Version GetVersion() CXX11_OVERRIDE + Version GetVersion() override { return Version("Logs snomask output to channel(s).", VF_VENDOR); } -- cgit v1.3.1-10-gc9f91