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_ircv3_chghost.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/modules/m_ircv3_chghost.cpp') diff --git a/src/modules/m_ircv3_chghost.cpp b/src/modules/m_ircv3_chghost.cpp index fd142803f..31e2c1519 100644 --- a/src/modules/m_ircv3_chghost.cpp +++ b/src/modules/m_ircv3_chghost.cpp @@ -42,17 +42,17 @@ class ModuleIRCv3ChgHost : public Module { } - void OnChangeIdent(User* user, const std::string& newident) CXX11_OVERRIDE + void OnChangeIdent(User* user, const std::string& newident) override { DoChgHost(user, newident, user->GetDisplayedHost()); } - void OnChangeHost(User* user, const std::string& newhost) CXX11_OVERRIDE + void OnChangeHost(User* user, const std::string& newhost) override { DoChgHost(user, user->ident, newhost); } - Version GetVersion() CXX11_OVERRIDE + Version GetVersion() override { return Version("Provides the chghost IRCv3 extension", VF_VENDOR); } -- cgit v1.3.1-10-gc9f91