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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user