summaryrefslogtreecommitdiff
path: root/modules/httpd.cpp
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2015-07-08 13:01:28 +0100
committerPeter Powell <petpow@saberuk.com>2015-12-31 09:05:02 +0000
commitec85737434466d13f1c0828d1459c6679f8d2565 (patch)
tree4ae2253d945451136959f856de0c58497066b285 /modules/httpd.cpp
parent551786efeaf4f297f59bab75e38746ced30a545d (diff)
Add missing override keyword to methods that require it.
Diffstat (limited to 'modules/httpd.cpp')
-rw-r--r--modules/httpd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/httpd.cpp b/modules/httpd.cpp
index 17f80d376..1627ef133 100644
--- a/modules/httpd.cpp
+++ b/modules/httpd.cpp
@@ -325,7 +325,7 @@ class MyHTTPProvider : public HTTPProvider, public Timer
this->pages.erase(page->GetURL());
}
- HTTPPage* FindPage(const Anope::string &pname)
+ HTTPPage* FindPage(const Anope::string &pname) override
{
if (this->pages.count(pname) == 0)
return NULL;