From fc6b8e8bf7125de4216b6e499db2dc0b967d7731 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Fri, 29 Mar 2002 11:11:03 -0500 Subject: fix const problem --- Source/cmAddExecutableCommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 const& argsIn) } std::vector args; cmSystemTools::ExpandListArguments(argsIn, args); - std::vector::const_iterator s = args.begin(); + std::vector::iterator s = args.begin(); std::string exename = *s; -- cgit v0.12