diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-09-24 19:43:13 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-09-24 20:09:32 +0000 |
commit | 614d6b5714681c556337874a9d80f956ff5a39b6 (patch) | |
tree | d28977f066e36029dd23128ae94bd9450db45125 /external | |
parent | Merge pull request #5928 (diff) | |
download | monero-614d6b5714681c556337874a9d80f956ff5a39b6.tar.xz |
easylogging++: split strings manually
Avoids cmake skullduggery
Diffstat (limited to 'external')
-rw-r--r-- | external/easylogging++/easylogging++.cc | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/external/easylogging++/easylogging++.cc b/external/easylogging++/easylogging++.cc index a5a4a64b7..b89fd3daf 100644 --- a/external/easylogging++/easylogging++.cc +++ b/external/easylogging++/easylogging++.cc @@ -18,7 +18,6 @@ #include "easylogging++.h" #include <unistd.h> -#include <boost/algorithm/string.hpp> #if defined(AUTO_INITIALIZE_EASYLOGGINGPP) INITIALIZE_EASYLOGGINGPP @@ -2438,7 +2437,19 @@ void DefaultLogDispatchCallback::handle(const LogDispatchData* data) { if (strchr(msg.c_str(), '\n')) { std::vector<std::string> v; - boost::split(v, msg, boost::is_any_of("\n")); + const char *s = msg.c_str(); + while (true) + { + const char *ptr = strchr(s, '\n'); + if (!ptr) + { + if (*s) + v.push_back(s); + break; + } + v.push_back(std::string(s, ptr - s)); + s = ptr + 1; + } for (const std::string &s: v) { LogMessage msgline(logmsg->level(), logmsg->color(), logmsg->file(), logmsg->line(), logmsg->func(), logmsg->verboseLevel(), logmsg->logger(), &s); |