fix const problem

This commit is contained in:
Bill Hoffman 2002-03-29 11:11:03 -05:00
parent dbdb0adce8
commit fc6b8e8bf7
1 changed files with 1 additions and 1 deletions

View File

@ -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;