浏览代码

COMP: Fixed ambiguous call to insert method of string.

Brad King 20 年之前
父节点
当前提交
85f82c2092
共有 1 个文件被更改,包括 2 次插入1 次删除
  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;