diff options
author | Adam <Adam@anope.org> | 2013-07-07 23:13:29 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-07-07 23:13:29 -0400 |
commit | 0ff48e1538d8cc694e045775531ee075a319cb8a (patch) | |
tree | 83b9ea2ecc607f8a8b6e8485f676d0f14f7bc61b /include/modules/cs_log.h | |
parent | 53038d83bf4afe0cc21e465f6a8525b88c1d2886 (diff) |
Move op/deop/etc back to an actual command, its too hard to use cs_log with it as rewrites. Allow cs_log to work with either command names or service names.
Diffstat (limited to 'include/modules/cs_log.h')
-rw-r--r-- | include/modules/cs_log.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/modules/cs_log.h b/include/modules/cs_log.h index 555a44e50..de3a75aa8 100644 --- a/include/modules/cs_log.h +++ b/include/modules/cs_log.h @@ -22,6 +22,7 @@ struct LogSetting Anope::string creator; time_t created; + virtual ~LogSetting() { } protected: LogSetting() { } }; @@ -36,6 +37,7 @@ struct LogSettings : Serialize::Checker<std::vector<LogSetting *> > } public: + virtual ~LogSettings() { } virtual LogSetting *Create() = 0; }; |