cmLocalGenerator: Assert that there is a parent.

If the CMakeLists.txt file does not exist, there must be a parent.
The case for the top-level of the project is already handled in
cmake::DoPreConfigureChecks.
This commit is contained in:
Stephen Kelly 2015-05-14 21:04:17 +02:00
parent 63255342c6
commit 7baef75649
1 changed files with 1 additions and 4 deletions

View File

@ -198,10 +198,7 @@ void cmLocalGenerator::ReadInputFile()
return;
}
if(!this->Parent)
{
return;
}
assert(this->Parent);
// The file is missing. Check policy CMP0014.
cmMakefile* mf = this->Parent->GetMakefile();