mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 22:50:26 -06:00
cmExportSet: default destructor
This commit is contained in:
@@ -283,7 +283,8 @@ void cmExportBuildFileGenerator::GetTargets(
|
||||
std::vector<std::string>& targets) const
|
||||
{
|
||||
if (this->ExportSet) {
|
||||
for (cmTargetExport* te : *this->ExportSet->GetTargetExports()) {
|
||||
for (std::unique_ptr<cmTargetExport> const& te :
|
||||
this->ExportSet->GetTargetExports()) {
|
||||
targets.push_back(te->TargetName);
|
||||
}
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user