Explorar o código

fix const problem

Bill Hoffman %!s(int64=24) %!d(string=hai) anos
pai
achega
fc6b8e8bf7
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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;
   std::vector<std::string> args;
   cmSystemTools::ExpandListArguments(argsIn, 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;
   std::string exename = *s;