diff options
author | Sadie Powell <sadie@witchery.services> | 2024-02-27 10:40:23 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-02-27 10:48:55 +0000 |
commit | b5b3c744778ed0cbceb03f2f8dbbec33d2fd0e94 (patch) | |
tree | e6d8a7c143a11035be55ffffcdc97395eb5b4e25 /modules/protocol/plexus.cpp | |
parent | 73d4ac6de04a1035ac36182d3f269cc938c6bc19 (diff) |
Make functions that don't use `this` static.
Diffstat (limited to 'modules/protocol/plexus.cpp')
-rw-r--r-- | modules/protocol/plexus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/plexus.cpp b/modules/protocol/plexus.cpp index c3a245b49..1e5ae714b 100644 --- a/modules/protocol/plexus.cpp +++ b/modules/protocol/plexus.cpp @@ -368,7 +368,7 @@ class ProtoPlexus final IRCDMessageServer message_server; IRCDMessageUID message_uid; - void AddModes() + static void AddModes() { /* Add user modes */ ModeManager::AddUserMode(new UserModeOperOnly("ADMIN", 'a')); |