summaryrefslogtreecommitdiffstats
path: root/Source/cmAddExecutableCommand.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-03-29 16:11:03 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-03-29 16:11:03 (GMT)
commitfc6b8e8bf7125de4216b6e499db2dc0b967d7731 (patch)
tree646d7896ea071942d9dc9bf57e004f92df79cad3 /Source/cmAddExecutableCommand.cxx
parentdbdb0adce84b7a1a37fb058f65c8734ff29429c3 (diff)
downloadCMake-fc6b8e8bf7125de4216b6e499db2dc0b967d7731.zip
CMake-fc6b8e8bf7125de4216b6e499db2dc0b967d7731.tar.gz
CMake-fc6b8e8bf7125de4216b6e499db2dc0b967d7731.tar.bz2
fix const problem
Diffstat (limited to 'Source/cmAddExecutableCommand.cxx')
-rw-r--r--Source/cmAddExecutableCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmAddExecutableCommand.cxx b/Source/cmAddExecutableCommand.cxx
index d41549f..c668b20 100644
--- a/Source/cmAddExecutableCommand.cxx
+++ b/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;