mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
fix const problem
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user