Skip to content

Commit dee927a

Browse files
Merge pull request #8667 from osamahammad21/drt-fix-gc-drcbox
DRT: correct use of drcBox_ inside FlexGCWorker
2 parents 66bcec9 + b19cfc3 commit dee927a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/drt/src/gc/FlexGC_main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1639,7 +1639,7 @@ void FlexGCWorker::Impl::checkMetalShape_minArea(gcPin* pin,
16391639
gtl::rectangle_data<frCoord> bbox;
16401640
gtl::extents(bbox, *pin->getPolygon());
16411641
odb::Rect bbox2(gtl::xl(bbox), gtl::yl(bbox), gtl::xh(bbox), gtl::yh(bbox));
1642-
if (!drWorker_->getDrcBox().contains(bbox2)) {
1642+
if (!drcBox_.contains(bbox2)) {
16431643
return;
16441644
}
16451645
for (auto& edges : pin->getPolygonEdges()) {

0 commit comments

Comments
 (0)