diff options
author | Adam <Adam@anope.org> | 2016-07-28 21:51:16 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-07-28 21:51:16 -0400 |
commit | aeb8f29438358a07cc62f167456d6f04a8c84668 (patch) | |
tree | 59a5a7bca9bc9be380ad8f8f87478e79525b13ee /modules/operserv | |
parent | 0e758a2ac23dc4a001e8e126cec14588da9a9769 (diff) |
Add missing operserv/stats header
Diffstat (limited to 'modules/operserv')
-rw-r--r-- | modules/operserv/stats.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/operserv/stats.cpp b/modules/operserv/stats.cpp index 0fc5e9ae1..8eb9353a9 100644 --- a/modules/operserv/stats.cpp +++ b/modules/operserv/stats.cpp @@ -24,11 +24,11 @@ class StatsImpl : public Stats using Stats::Stats; - unsigned int GetMaxUserCount(); - void SetMaxUserCount(unsigned int i); + unsigned int GetMaxUserCount() override; + void SetMaxUserCount(unsigned int i) override; - time_t GetMaxUserTime(); - void SetMaxUserTime(time_t t); + time_t GetMaxUserTime() override; + void SetMaxUserTime(time_t t) override; }; class StatsType : public Serialize::Type<StatsImpl> |