Use IsSpace(...) instead of boost::is_space

This commit is contained in:
practicalswift
2018-11-05 17:22:09 +01:00
parent c5fd143edb
commit 587924f000
2 changed files with 3 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ static void ResetArgs(const std::string& strArg)
{
std::vector<std::string> vecArg;
if (strArg.size())
boost::split(vecArg, strArg, boost::is_space(), boost::token_compress_on);
boost::split(vecArg, strArg, IsSpace, boost::token_compress_on);
// Insert dummy executable name:
vecArg.insert(vecArg.begin(), "testbitcoin");