diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-08-17 14:57:52 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-08-17 14:57:52 +0000 |
commit | b22a79da8db0ec3cf6f0c3db6351d5e9a848f7ab (patch) | |
tree | c62c85ecae287529381e4b35c2070ab792b53d91 /include | |
parent | 3bbc954b77db81a17049ca348e0ab1431c5d015f (diff) |
Change to virtual
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7733 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/base.h b/include/base.h index ba8184c3c..e769e93b1 100644 --- a/include/base.h +++ b/include/base.h @@ -49,7 +49,7 @@ class CoreExport classbase /** Destructor. * Does sweet FA. */ - ~classbase() { } + virtual ~classbase() { } }; /** class Extensible is the parent class of many classes such as userrec and chanrec. |