diff options
author | Adam <Adam@anope.org> | 2016-09-23 20:18:22 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-09-23 20:18:22 -0400 |
commit | efb7f00eb8785ad4cdcaf20c34199221b2100cb8 (patch) | |
tree | d2f3c31810210db11e09db97398ce8ed4fd84db2 /modules/chanserv/flags.cpp | |
parent | 8f3a7cebf42911cd6a7bb8a2a995ca0afbbfbbc4 (diff) |
Fix access modules to load
Diffstat (limited to 'modules/chanserv/flags.cpp')
-rw-r--r-- | modules/chanserv/flags.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/chanserv/flags.cpp b/modules/chanserv/flags.cpp index 9de377032..5f3212481 100644 --- a/modules/chanserv/flags.cpp +++ b/modules/chanserv/flags.cpp @@ -85,12 +85,12 @@ class FlagsChanAccessType : public ChanAccessType<FlagsChanAccessImpl> } }; -const Anope::string &FlagsChanAccess::GetFlags() +const Anope::string &FlagsChanAccessImpl::GetFlags() { return Get(&FlagsChanAccessType::flags); } -void FlagsChanAccess::SetFlags(const Anope::string &i) +void FlagsChanAccessImpl::SetFlags(const Anope::string &i) { Object::Set(&FlagsChanAccessType::flags, i); } |