Explorar o código

COMP: Fixed ambiguous call to insert method of string.

Brad King %!s(int64=20) %!d(string=hai) anos
pai
achega
85f82c2092
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      Source/kwsys/SystemTools.cxx

+ 2 - 1
Source/kwsys/SystemTools.cxx

@@ -1296,7 +1296,8 @@ kwsys_stl::string SystemTools::ConvertToWindowsOutputPath(const char* path)
   if(ret.find(' ') != kwsys_stl::string::npos
      && ret[0] != '\"')
     {
-    ret.insert(0, 1, '\"');
+    ret.insert(static_cast<unsigned int>(0),
+               static_cast<unsigned int>(1), '\"');
     ret.append(1, '\"');
     }
   return ret;