]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_httpd_config.cpp
Purge the old chanlog code from the module file.
[user/henk/code/inspircd.git] / src / modules / m_httpd_config.cpp
index cfdaa4290c3bd0e525290c097db4a243b07e20dd..78053d8d54b126265144b375789567667e31f171 100644 (file)
@@ -27,7 +27,7 @@
 class ModuleHttpConfig : public Module
 {
  public:
-       void init()
+       void init() CXX11_OVERRIDE
        {
                Implementation eventlist[] = { I_OnEvent };
                ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
@@ -67,7 +67,7 @@ class ModuleHttpConfig : public Module
                return ret;
        }
 
-       void OnEvent(Event& event)
+       void OnEvent(Event& event) CXX11_OVERRIDE
        {
                std::stringstream data("");
 
@@ -102,7 +102,7 @@ class ModuleHttpConfig : public Module
                }
        }
 
-       virtual Version GetVersion()
+       Version GetVersion() CXX11_OVERRIDE
        {
                return Version("Allows for the server configuration to be viewed over HTTP via m_httpd.so", VF_VENDOR);
        }