1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 01:06:37 +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
+1 -1
View File
@@ -152,7 +152,7 @@ bool sepstream::GetTokenRemainder(Anope::string &token, int num)
return false;
}
const Anope::string sepstream::GetRemaining()
Anope::string sepstream::GetRemaining()
{
return !this->StreamEnd() ? this->tokens.substr(this->pos) : "";
}