ENH: fix warnings

This commit is contained in:
Bill Hoffman 2002-08-27 09:43:54 -04:00
parent 716eb19819
commit 37b73a908a
2 changed files with 1 additions and 2 deletions

View File

@ -11,7 +11,6 @@ cmSourceFile.cxx
cmSystemTools.cxx
cmDirectory.cxx
cmDynamicLoader.cxx
cmCPluginAPI.cxx
cmCommands.cxx
cmTarget.cxx
cmCustomCommand.cxx

View File

@ -113,7 +113,7 @@ bool cmLoadedCommand::InitialPass(std::vector<std::string> const& args)
}
// create argc and argv and then invoke the command
int argc = args.size();
int argc = static_cast<int> (args.size());
char **argv = NULL;
if (argc)
{