aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_samode.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-08-05 11:35:56 +0100
committerGravatar Sadie Powell2023-08-11 12:03:09 +0100
commit70131c8e78e3186d217a0c50abba64474506cd69 (patch)
treee546ae74dca6a9aac941673b1e14f3e27597123b /src/modules/m_samode.cpp
parentRename utility/string_view to utility/string. (diff)
Move stdalgo::string::join to utility/string and templatise separator.
Diffstat (limited to 'src/modules/m_samode.cpp')
-rw-r--r--src/modules/m_samode.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_samode.cpp b/src/modules/m_samode.cpp
index 72d1f602f..8e2f72290 100644
--- a/src/modules/m_samode.cpp
+++ b/src/modules/m_samode.cpp
@@ -27,6 +27,7 @@
#include "inspircd.h"
#include "clientprotocolmsg.h"
#include "numerichelper.h"
+#include "utility/string.h"
class CommandSamode final
: public Command
@@ -78,7 +79,7 @@ public:
//
// Viewing the modes of a user or a channel could also result in this, but
// that is not possible with /SAMODE because we require at least 2 parameters.
- LogUsage(user, stdalgo::string::join(parameters));
+ LogUsage(user, insp::join(parameters));
}
return CmdResult::SUCCESS;