summaryrefslogtreecommitdiff
path: root/include/modules/cs_log.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/modules/cs_log.h')
-rw-r--r--include/modules/cs_log.h2
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;
};