浏览代码

fix const problem

Bill Hoffman 24 年之前
父节点
当前提交
fc6b8e8bf7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Source/cmAddExecutableCommand.cxx

+ 1 - 1
Source/cmAddExecutableCommand.cxx

@@ -27,7 +27,7 @@ bool cmAddExecutableCommand::InitialPass(std::vector<std::string> const& argsIn)
     }
   std::vector<std::string> args;
   cmSystemTools::ExpandListArguments(argsIn, args);
-  std::vector<std::string>::const_iterator s = args.begin();
+  std::vector<std::string>::iterator s = args.begin();
 
   std::string exename = *s;