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 /modules/chanstats.cpp | |
parent | 7640fad30cc2a3d61e67a7075c27f26400d4779f (diff) |
Remove redundant uses of const.
Diffstat (limited to 'modules/chanstats.cpp')
-rw-r--r-- | modules/chanstats.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/chanstats.cpp b/modules/chanstats.cpp index 06e457f21..b2887dfd5 100644 --- a/modules/chanstats.cpp +++ b/modules/chanstats.cpp @@ -210,7 +210,7 @@ class MChanstats final return smileys; } - const Anope::string GetDisplay(User *u) + Anope::string GetDisplay(User *u) { if (u && u->Account() && ns_stats.HasExt(u->Account())) return u->Account()->display; |