diff options
| author | 2024-08-18 16:04:36 +0100 | |
|---|---|---|
| committer | 2024-08-18 16:19:12 +0100 | |
| commit | d95be0a5165cf3cee3d1feedab1bdbdf21e5e419 (patch) | |
| tree | 20cdde19d3319c1423e63e37e5b26da6d5dad61b /include/modules | |
| parent | Document Write* members in the User type correctly. (diff) | |
Add a formatting overload to {Membership,User}::Write(Remote)Notice.
Diffstat (limited to 'include/modules')
| -rw-r--r-- | include/modules/ircv3_replies.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/modules/ircv3_replies.h b/include/modules/ircv3_replies.h index 4bfc8a30b..c92e257e9 100644 --- a/include/modules/ircv3_replies.h +++ b/include/modules/ircv3_replies.h @@ -67,9 +67,9 @@ private: void SendNoticeInternal(LocalUser* user, const Command* command, const std::string& description) { if (command) - user->WriteNotice(INSP_FORMAT("*** {}: {}", command->name, description)); + user->WriteNotice("*** {}: {}", command->name, description); else - user->WriteNotice(INSP_FORMAT("*** {}", description)); + user->WriteNotice("*** {}", description); } protected: |
