fix tinyxml2 namespace

This commit is contained in:
cDc
2019-01-16 15:26:30 +02:00
parent 5bbfe8f70c
commit c57a5fec1a
2 changed files with 4 additions and 4 deletions

View File

@@ -68,7 +68,7 @@ namespace Tools {
}
// split an input string with a delimiter and fill a string vector
static void strSplit(const std::string& str, TCHAR delim, std::vector<std::string>& values) {
static void strSplit(const std::string& str, char delim, std::vector<std::string>& values) {
values.clear();
std::string::size_type start(0), end(0);
while (end != std::string::npos) {