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:
parent
f506489d1e
commit
3b3622305b
|
@ -327,7 +327,6 @@ cmGeneratorTarget::~cmGeneratorTarget()
|
|||
cmDeleteAll(this->CompileDefinitionsEntries);
|
||||
cmDeleteAll(this->SourceEntries);
|
||||
cmDeleteAll(this->LinkInformation);
|
||||
this->LinkInformation.clear();
|
||||
}
|
||||
|
||||
cmLocalGenerator* cmGeneratorTarget::GetLocalGenerator() const
|
||||
|
|
Loading…
Reference in New Issue