From 0daf3253d0fec0cd53d591888c36a539e2601d04 Mon Sep 17 00:00:00 2001 From: jl777 Date: Wed, 3 Apr 2019 00:06:05 -1100 Subject: [PATCH] Std::string --- src/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.cpp b/src/util.cpp index ebc6dbccb..4265ff759 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -397,7 +397,7 @@ void ParseParameters(int argc, const char* const argv[]) void SplitStr(const std::string& strVal, std::vector outVals) { stringstream ss(strVal); - vector str; + std::string str; while ( ss.peek() == ' ' ) ss.ignore();