Std::string

This commit is contained in:
jl777
2019-04-03 00:06:05 -11:00
parent cf437222fe
commit 0daf3253d0

View File

@@ -397,7 +397,7 @@ void ParseParameters(int argc, const char* const argv[])
void SplitStr(const std::string& strVal, std::vector<std::string> outVals) void SplitStr(const std::string& strVal, std::vector<std::string> outVals)
{ {
stringstream ss(strVal); stringstream ss(strVal);
vector<std::string> str; std::string str;
while ( ss.peek() == ' ' ) while ( ss.peek() == ' ' )
ss.ignore(); ss.ignore();