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/modes.h | |
parent | 7640fad30cc2a3d61e67a7075c27f26400d4779f (diff) |
Remove redundant uses of const.
Diffstat (limited to 'include/modes.h')
-rw-r--r-- | include/modes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/modes.h b/include/modes.h index f1c116f1c..0198e6843 100644 --- a/include/modes.h +++ b/include/modes.h @@ -419,9 +419,9 @@ public: /** Get the banned mask for this entry * @return The mask */ - const Anope::string GetMask() const; + Anope::string GetMask() const; - const Anope::string GetNUHMask() const; + Anope::string GetNUHMask() const; /** Check if this entry matches a user * @param u The user |