1
0
mirror of https://github.com/anope/anope.git synced 2026-07-09 02:03:14 +02:00

Fix warnings from classes with virtual functions not having virtual destructors

This commit is contained in:
Adam
2012-11-28 23:54:54 -05:00
parent 26a048e5c4
commit 337f361526
3 changed files with 4 additions and 0 deletions
+1
View File
@@ -20,6 +20,7 @@ class XMLRPCServiceInterface;
class XMLRPCEvent
{
public:
virtual ~XMLRPCEvent() { }
virtual bool Run(XMLRPCServiceInterface *iface, HTTPClient *client, XMLRPCRequest &request) = 0;
};