diff options
author | Adam <Adam@anope.org> | 2013-08-12 15:45:50 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-08-12 15:45:50 -0400 |
commit | de5c8c0d386375c46d812c5843a5bb5a850ee865 (patch) | |
tree | d2e7834cbe85a56505ee63d22609c79b0ac5af55 /include | |
parent | 8e011bbb783df2c646f479e7b02989f9165ed7c1 (diff) |
Fix some issues with suspend
Diffstat (limited to 'include')
-rw-r--r-- | include/modules/cs_suspend.h | 1 | ||||
-rw-r--r-- | include/modules/ns_suspend.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/modules/cs_suspend.h b/include/modules/cs_suspend.h index dbdd3b9e9..436e030d0 100644 --- a/include/modules/cs_suspend.h +++ b/include/modules/cs_suspend.h @@ -14,6 +14,7 @@ struct CSSuspendInfo Anope::string chan, by, reason; time_t time, expires; + virtual ~CSSuspendInfo() { } protected: CSSuspendInfo() { } }; diff --git a/include/modules/ns_suspend.h b/include/modules/ns_suspend.h index 59f3d5d58..5bdbd1568 100644 --- a/include/modules/ns_suspend.h +++ b/include/modules/ns_suspend.h @@ -14,6 +14,7 @@ struct NSSuspendInfo Anope::string nick, by, reason; time_t when, expires; + virtual ~NSSuspendInfo() { } protected: NSSuspendInfo() { } }; |