Merge pull request #228 from The-OpenROAD-Project/del-fix

Quick fix for OpenROAD#4719
This commit is contained in:
Matt Liberty 2024-02-29 12:22:07 -08:00 committed by GitHub
commit 2e59563717
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -508,7 +508,7 @@ ConcreteParasiticNetwork::deleteNodes()
delete node;
}
for (auto pin_node : pin_nodes_) {
ParasiticNode *node = pin_node.second;
ConcreteParasiticNode *node = pin_node.second;
delete node;
}
}