ENH: fix warnings
This commit is contained in:
parent
716eb19819
commit
37b73a908a
|
@ -11,7 +11,6 @@ cmSourceFile.cxx
|
|||
cmSystemTools.cxx
|
||||
cmDirectory.cxx
|
||||
cmDynamicLoader.cxx
|
||||
cmCPluginAPI.cxx
|
||||
cmCommands.cxx
|
||||
cmTarget.cxx
|
||||
cmCustomCommand.cxx
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue