ENH: fix warnings
This commit is contained in:
parent
716eb19819
commit
37b73a908a
@ -11,7 +11,6 @@ cmSourceFile.cxx
|
|||||||
cmSystemTools.cxx
|
cmSystemTools.cxx
|
||||||
cmDirectory.cxx
|
cmDirectory.cxx
|
||||||
cmDynamicLoader.cxx
|
cmDynamicLoader.cxx
|
||||||
cmCPluginAPI.cxx
|
|
||||||
cmCommands.cxx
|
cmCommands.cxx
|
||||||
cmTarget.cxx
|
cmTarget.cxx
|
||||||
cmCustomCommand.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
|
// create argc and argv and then invoke the command
|
||||||
int argc = args.size();
|
int argc = static_cast<int> (args.size());
|
||||||
char **argv = NULL;
|
char **argv = NULL;
|
||||||
if (argc)
|
if (argc)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user