1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 06:33:13 +02:00

Make functions that don't use this static.

This commit is contained in:
Sadie Powell
2024-02-27 10:40:23 +00:00
parent 73d4ac6de0
commit b5b3c74477
35 changed files with 61 additions and 61 deletions
+2 -2
View File
@@ -14,7 +14,7 @@
class CommandCSUp final
: public Command
{
void SetModes(User *u, Channel *c)
static void SetModes(User *u, Channel *c)
{
if (!c->ci)
return;
@@ -133,7 +133,7 @@ public:
class CommandCSDown final
: public Command
{
void RemoveAll(User *u, Channel *c)
static void RemoveAll(User *u, Channel *c)
{
ChanUserContainer *cu = c->FindUser(u);
if (cu != NULL)