diff options
author | Sadie Powell <sadie@witchery.services> | 2024-02-27 10:34:27 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-02-27 10:34:27 +0000 |
commit | 73d4ac6de04a1035ac36182d3f269cc938c6bc19 (patch) | |
tree | 84d50083d34ea1d69b832a5e55eab50ebc1ac71b /include/opertype.h | |
parent | 7640fad30cc2a3d61e67a7075c27f26400d4779f (diff) |
Remove redundant uses of const.
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; }; |