summaryrefslogtreecommitdiff
path: root/include/modules/cs_log.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2014-05-28 12:29:37 -0400
committerAdam <Adam@anope.org>2014-05-28 12:29:37 -0400
commit0dba0692f9f88275b7d89d511bf22124217bc4c6 (patch)
treef7f7d0672f31ab37a7b15b128a29d454261e8541 /include/modules/cs_log.h
parentf97e339314257fa37cfcab0c2289fb6812e32e85 (diff)
Mark pure virtual functions with anope_abstract
Diffstat (limited to 'include/modules/cs_log.h')
-rw-r--r--include/modules/cs_log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/modules/cs_log.h b/include/modules/cs_log.h
index 5259c0880..8b945deee 100644
--- a/include/modules/cs_log.h
+++ b/include/modules/cs_log.h
@@ -38,6 +38,6 @@ struct LogSettings : Serialize::Checker<std::vector<LogSetting *> >
public:
virtual ~LogSettings() { }
- virtual LogSetting *Create() = 0;
+ virtual LogSetting *Create() anope_abstract;
};