summaryrefslogtreecommitdiff
path: root/include/modules/httpd.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/modules/httpd.h')
-rw-r--r--include/modules/httpd.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/modules/httpd.h b/include/modules/httpd.h
index d9ab85df7..c4c2c7d74 100644
--- a/include/modules/httpd.h
+++ b/include/modules/httpd.h
@@ -28,6 +28,7 @@ struct HTTPReply
std::vector<cookie> cookies;
HTTPReply() = default;
+ HTTPReply& operator=(const HTTPReply &) = default;
HTTPReply(const HTTPReply& other) : error(other.error), length(other.length)
{
@@ -93,7 +94,7 @@ struct HTTPMessage
class HTTPClient;
class HTTPProvider;
-class HTTPPage : public Base
+class HTTPPage : public virtual Base
{
Anope::string url;
Anope::string content_type;