Skip to content

Commit 06c9d45

Browse files
mpl: fix argument name
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Arthur Koucher <[email protected]>
1 parent eaead00 commit 06c9d45

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/mpl/src/graphics.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -588,10 +588,10 @@ void Graphics::drawBundledNets(gui::Painter& painter,
588588
template <typename T>
589589
void Graphics::drawBundledNet(gui::Painter& painter,
590590
const std::vector<T>& macros,
591-
const BundledNet& bundled_net)
591+
const BundledNet& net)
592592
{
593-
const T& source = macros[bundled_net.terminals.first];
594-
const T& target = macros[bundled_net.terminals.second];
593+
const T& source = macros[net.terminals.first];
594+
const T& target = macros[net.terminals.second];
595595

596596
if (target.isClusterOfUnplacedIOPins()) {
597597
drawDistToRegion(painter, source, target);

0 commit comments

Comments
 (0)