summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-15 00:13:26 +0000
committerrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-15 00:13:26 +0000
commit83a7ad74808fef3dd606b94e9dd43a4f9c08c44a (patch)
tree7c978fb73faf82040fa0cdb3704a815886980367
parenta0f0cb0767cf5cf10648dfeff55b01d9c085b7b6 (diff)
Fix load error on protocol modules. Rob, you forgot to add a body to your virtual destructor. :)
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1685 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r--include/services.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/services.h b/include/services.h
index 029e6efa9..d53e18472 100644
--- a/include/services.h
+++ b/include/services.h
@@ -1281,7 +1281,7 @@ private:
}
public:
- virtual ~IRCDProto();
+ virtual ~IRCDProto() { }
virtual void SendSVSNOOP(const char *, int) { }
virtual void SendAkillDel(const char *, const char *) = 0;