aboutsummaryrefslogtreecommitdiff
path: root/include/logging.h
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-01-11 00:45:04 +0000
committerGravatar Sadie Powell2023-01-11 00:56:15 +0000
commitc3e42d4e5db872e8ef408263da74375ff1ff7f82 (patch)
tree11cd74fa4230b60fa8ba3d4c9e72f18be9c3d12c /include/logging.h
parentFix calling various static functions through a type instance. (diff)
Make some functions that don't use `this` static.
Diffstat (limited to 'include/logging.h')
-rw-r--r--include/logging.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/logging.h b/include/logging.h
index 1c9919e34..06e35c449 100644
--- a/include/logging.h
+++ b/include/logging.h
@@ -249,7 +249,7 @@ public:
* @param user The user to notify.
* @param type The type of message to send.
*/
- void NotifyRawIO(LocalUser* user, MessageType type);
+ static void NotifyRawIO(LocalUser* user, MessageType type);
/** Opens loggers that are specified in the config. */
void OpenLogs(bool requiremethods);