diff options
author | Adam <Adam@anope.org> | 2017-05-29 17:38:39 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2017-05-29 17:38:39 -0400 |
commit | ff81c9bab8e1eddf044d7cb5d06d44b4a43c95d8 (patch) | |
tree | bfed822d690999f2c4458a30a65c232210b1e9cc /include | |
parent | 3f143633541a5361bf5b02b0d69b65447aea7b79 (diff) |
Fixup some compilation warnings
Diffstat (limited to 'include')
-rw-r--r-- | include/modules/chanserv/access.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/modules/chanserv/access.h b/include/modules/chanserv/access.h index fc1721e39..0e7f86524 100644 --- a/include/modules/chanserv/access.h +++ b/include/modules/chanserv/access.h @@ -55,7 +55,7 @@ class XOPChanAccess : public ChanAccessImpl using ChanAccessImpl::ChanAccessImpl; - virtual const Anope::string &GetType() anope_abstract; + virtual const Anope::string GetType() anope_abstract; virtual void SetType(const Anope::string &) anope_abstract; }; @@ -66,7 +66,7 @@ class FlagsChanAccess : public ChanAccessImpl using ChanAccessImpl::ChanAccessImpl; - virtual const Anope::string &GetFlags() anope_abstract; + virtual const Anope::string GetFlags() anope_abstract; virtual void SetFlags(const Anope::string &) anope_abstract; }; |