cmMakefile: Simplify GetCMakeInstance implementation.
No callers handle the possibility that it can return null, and that is no longer possible anyway.
This commit is contained in:
parent
6cd6d50871
commit
efcca9353f
|
@ -3693,11 +3693,7 @@ bool cmMakefile::GetIsSourceFileTryCompile() const
|
|||
|
||||
cmake *cmMakefile::GetCMakeInstance() const
|
||||
{
|
||||
if ( this->LocalGenerator && this->LocalGenerator->GetGlobalGenerator() )
|
||||
{
|
||||
return this->LocalGenerator->GetGlobalGenerator()->GetCMakeInstance();
|
||||
}
|
||||
return 0;
|
||||
return this->LocalGenerator->GetGlobalGenerator()->GetCMakeInstance();
|
||||
}
|
||||
|
||||
#ifdef CMAKE_BUILD_WITH_CMAKE
|
||||
|
|
Loading…
Reference in New Issue