diff options
Diffstat (limited to 'include/opertype.h')
-rw-r--r-- | include/opertype.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/opertype.h b/include/opertype.h index d9f0f709f..1ec7f7aca 100644 --- a/include/opertype.h +++ b/include/opertype.h @@ -115,10 +115,10 @@ public: /** Gets the icommands for this opertype * @return A list of commands */ - const std::list<Anope::string> GetCommands() const; + std::list<Anope::string> GetCommands() const; /** Gets the privileges for this opertype * @return A list of privileges */ - const std::list<Anope::string> GetPrivs() const; + std::list<Anope::string> GetPrivs() const; }; |