Attempt a minor pointless change to fix the build

This commit is contained in:
A.J. Beamon 2020-01-06 15:17:13 -08:00
parent 6cf38790d6
commit de5a591b15
1 changed files with 2 additions and 2 deletions

View File

@ -133,12 +133,12 @@ std::string removeWhitespace(const std::string &t)
if (found != std::string::npos)
str.erase(found + 1);
else
str.clear(); // str is all whitespace
str.clear(); // str is all whitespace
found = str.find_first_not_of(ws);
if (found != std::string::npos)
str.erase(0, found);
else
str.clear(); // str is all whitespace
str.clear(); // str is all whitespace
return str;
}