diff options
| author | ilotterytea <iltsu@alright.party> | 2024-04-21 02:09:16 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-04-21 02:09:16 +0500 |
| commit | aa21312f18ef86a335dd28272e317da959ceb9b7 (patch) | |
| tree | 038a13e38e06a4199c6af9a86bff39963be5c449 /src/irc/message.cpp | |
| parent | f2c9182dba4cbd95d7f865efddd45c592f8623bf (diff) | |
upd: renamed namespaces + added utils namespace
Diffstat (limited to 'src/irc/message.cpp')
| -rw-r--r-- | src/irc/message.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/irc/message.cpp b/src/irc/message.cpp index 123a0da..569e691 100644 --- a/src/irc/message.cpp +++ b/src/irc/message.cpp @@ -4,10 +4,10 @@ #include <string> #include <vector> -namespace RedpilledBot { - namespace IRC { +namespace bot { + namespace irc { std::optional<MessageType> define_message_type(const std::string &msg) { - std::vector<std::string> parts = split_text(msg, ' '); + std::vector<std::string> parts = utils::string::split_text(msg, ' '); int i; if (msg[0] == '@') { |
