Skip to content

Commit 91084ce

Browse files
committed
pdn: clang-format
Signed-off-by: Peter Gadfort <[email protected]>
1 parent 5a20323 commit 91084ce

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/pdn/src/PdnGen.cc

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,7 @@ void PdnGen::cleanupVias()
156156

157157
void PdnGen::updateVias()
158158
{
159-
debugPrint(
160-
logger_, utl::PDN, "Make", 2, "Update vias - start");
159+
debugPrint(logger_, utl::PDN, "Make", 2, "Update vias - start");
161160

162161
const auto grids = getGrids();
163162

@@ -177,8 +176,7 @@ void PdnGen::updateVias()
177176
}
178177
}
179178

180-
debugPrint(
181-
logger_, utl::PDN, "Make", 2, "Update vias - end");
179+
debugPrint(logger_, utl::PDN, "Make", 2, "Update vias - end");
182180
}
183181

184182
void PdnGen::trimShapes()

src/pdn/src/grid.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -785,7 +785,8 @@ void Grid::makeVias(const Shape::ShapeTreeMap& global_shapes,
785785
void Grid::makeVias(const Shape::ShapeTreeMap& global_shapes,
786786
const Shape::ObstructionTreeMap& obstructions)
787787
{
788-
debugPrint(getLogger(), utl::PDN, "Make", 1, "Making vias in \"{}\" - start", name_);
788+
debugPrint(
789+
getLogger(), utl::PDN, "Make", 1, "Making vias in \"{}\" - start", name_);
789790
Shape::ShapeTreeMap search_shapes = getShapes();
790791

791792
odb::Rect search_area = getDomainBoundary();
@@ -908,7 +909,8 @@ void Grid::makeVias(const Shape::ShapeTreeMap& global_shapes,
908909
via->getLowerShape()->addVia(via);
909910
via->getUpperShape()->addVia(via);
910911
}
911-
debugPrint(getLogger(), utl::PDN, "Make", 1, "Making vias in \"{}\" - end", name_);
912+
debugPrint(
913+
getLogger(), utl::PDN, "Make", 1, "Making vias in \"{}\" - end", name_);
912914
}
913915

914916
void Grid::getVias(std::vector<ViaPtr>& vias) const

0 commit comments

Comments
 (0)