diff options
| author | 2023-08-05 11:35:56 +0100 | |
|---|---|---|
| committer | 2023-08-11 12:03:09 +0100 | |
| commit | 70131c8e78e3186d217a0c50abba64474506cd69 (patch) | |
| tree | e546ae74dca6a9aac941673b1e14f3e27597123b /src/users.cpp | |
| parent | Rename utility/string_view to utility/string. (diff) | |
Move stdalgo::string::join to utility/string and templatise separator.
Diffstat (limited to 'src/users.cpp')
| -rw-r--r-- | src/users.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp index c78ae6de6..af3b518bc 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -35,6 +35,7 @@ #include "inspircd.h" #include "clientprotocolevent.h" +#include "utility/string.h" #include "xline.h" enum @@ -1207,7 +1208,7 @@ std::string OperType::GetCommands(bool all) const ret.push_back(cmd->name); } std::sort(ret.begin(), ret.end()); - return stdalgo::string::join(ret); + return insp::join(ret); } std::string OperType::GetModes(ModeType mt, bool all) const |
