1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 23:26:38 +02:00

Remove redundant uses of const.

This commit is contained in:
Sadie Powell
2024-02-27 10:34:27 +00:00
parent 7640fad30c
commit 73d4ac6de0
10 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -806,12 +806,12 @@ Entry::Entry(const Anope::string &m, const Anope::string &fh) : name(m), mask(fh
this->real.clear();
}
const Anope::string Entry::GetMask() const
Anope::string Entry::GetMask() const
{
return this->mask;
}
const Anope::string Entry::GetNUHMask() const
Anope::string Entry::GetNUHMask() const
{
Anope::string n = nick.empty() ? "*" : nick,
u = user.empty() ? "*" : user,