mirror of
https://github.com/anope/anope.git
synced 2026-07-04 06:13:11 +02:00
Make functions that don't use this static.
This commit is contained in:
@@ -174,7 +174,7 @@ class CommandOSSession final
|
||||
: public Command
|
||||
{
|
||||
private:
|
||||
void DoList(CommandSource &source, const std::vector<Anope::string> ¶ms)
|
||||
static void DoList(CommandSource &source, const std::vector<Anope::string> ¶ms)
|
||||
{
|
||||
Anope::string param = params[1];
|
||||
|
||||
@@ -216,7 +216,7 @@ private:
|
||||
return;
|
||||
}
|
||||
|
||||
void DoView(CommandSource &source, const std::vector<Anope::string> ¶ms)
|
||||
static void DoView(CommandSource &source, const std::vector<Anope::string> ¶ms)
|
||||
{
|
||||
Anope::string param = params[1];
|
||||
Session *session = session_service->FindSession(param);
|
||||
|
||||
Reference in New Issue
Block a user