cmGeneratorTarget: don't clear container in destructor

It will be destroyed anyway.  This also makes it easier to search for
places where containers are atually cleared in order to be recomputed.
This commit is contained in:
Daniel Pfeifer 2016-09-07 20:40:18 +02:00
parent f506489d1e
commit 3b3622305b
1 changed files with 0 additions and 1 deletions

View File

@ -327,7 +327,6 @@ cmGeneratorTarget::~cmGeneratorTarget()
cmDeleteAll(this->CompileDefinitionsEntries);
cmDeleteAll(this->SourceEntries);
cmDeleteAll(this->LinkInformation);
this->LinkInformation.clear();
}
cmLocalGenerator* cmGeneratorTarget::GetLocalGenerator() const