COMP: Remove warnings
This commit is contained in:
parent
15c7d45ecd
commit
094dd40d2e
|
@ -393,7 +393,7 @@ int cmCTestUpdateHandler::ProcessHandler()
|
||||||
std::string partialOutput;
|
std::string partialOutput;
|
||||||
command = updateCommand + " update " + updateOptions +
|
command = updateCommand + " update " + updateOptions +
|
||||||
" " + extra_update_opts;
|
" " + extra_update_opts;
|
||||||
res = cmSystemTools::RunSingleCommand(command.c_str(), &partialOutput,
|
bool res1 = cmSystemTools::RunSingleCommand(command.c_str(), &partialOutput,
|
||||||
&retVal, sourceDirectory,
|
&retVal, sourceDirectory,
|
||||||
m_Verbose, 0 /*m_TimeOut*/);
|
m_Verbose, 0 /*m_TimeOut*/);
|
||||||
command = updateCommand + " status";
|
command = updateCommand + " status";
|
||||||
|
@ -401,6 +401,7 @@ int cmCTestUpdateHandler::ProcessHandler()
|
||||||
&retVal, sourceDirectory,
|
&retVal, sourceDirectory,
|
||||||
m_Verbose, 0 /*m_TimeOut*/);
|
m_Verbose, 0 /*m_TimeOut*/);
|
||||||
goutput += partialOutput;
|
goutput += partialOutput;
|
||||||
|
res = res && res1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ( ofs )
|
if ( ofs )
|
||||||
|
|
|
@ -22,6 +22,7 @@ class cmakewizard
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
cmakewizard();
|
cmakewizard();
|
||||||
|
~cmakewizard() {}
|
||||||
/**
|
/**
|
||||||
* Prompt the user to see if they want to see advanced entries.
|
* Prompt the user to see if they want to see advanced entries.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue