From 63e8a8f6c2b27705b6526ed58be96255e6c36a35 Mon Sep 17 00:00:00 2001 From: cyberbotx Date: Sat, 7 Mar 2009 03:06:05 +0000 Subject: [PATCH] Fix slight warning that comes up with gcc 3.4.x but not 4.2.x, this should be done anyways. git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2144 5417fbe8-f217-4b02-8779-1006273d7864 --- include/modules.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/modules.h b/include/modules.h index 82dcf2ff8..15cdfc39c 100644 --- a/include/modules.h +++ b/include/modules.h @@ -328,7 +328,7 @@ class CoreExport Module /** Destroys a module, freeing resources it has allocated. */ - ~Module(); + virtual ~Module(); /** Sets a given type (CORE,PROTOCOL,3RD etc) on a module. * @param type The type to set the module as.