summaryrefslogtreecommitdiff
path: root/include/commands.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2012-11-28 23:54:54 -0500
committerAdam <Adam@anope.org>2012-11-29 17:03:53 -0500
commit337f3615264f30d4c9f06653d2dd2a21805546ce (patch)
treeaeda3846a982f007878f200a8761c80c9fb0d543 /include/commands.h
parent26a048e5c41b33cca78acaa0aa0b00396612bee4 (diff)
Fix warnings from classes with virtual functions not having virtual destructors
Diffstat (limited to 'include/commands.h')
-rw-r--r--include/commands.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/commands.h b/include/commands.h
index 5c8664147..e390fb3d3 100644
--- a/include/commands.h
+++ b/include/commands.h
@@ -38,6 +38,7 @@ struct CommandInfo
*/
struct CommandReply
{
+ virtual ~CommandReply() { }
virtual void SendMessage(const BotInfo *source, const Anope::string &msg) = 0;
};