From 572e0cae1377f6bf33ac720a355e98e4a3227484 Mon Sep 17 00:00:00 2001 From: github action Date: Fri, 27 Mar 2026 18:27:53 +0000 Subject: [PATCH] Apply 'make format' --- src/V3Tristate.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/V3Tristate.cpp b/src/V3Tristate.cpp index 8ffa49b4a..f68067f1e 100644 --- a/src/V3Tristate.cpp +++ b/src/V3Tristate.cpp @@ -702,9 +702,11 @@ class TristateVisitor final : public TristateBaseVisitor { std::vector varsToProcess = vars; for (const auto& lhsEnt : m_lhsmap) { AstVar* const varp = lhsEnt.first; - if (!m_tgraph.isTristate(varp) && hasResolvedTriEnable(varp)) varsToProcess.push_back(varp); + if (!m_tgraph.isTristate(varp) && hasResolvedTriEnable(varp)) + varsToProcess.push_back(varp); } - for (AstVar* varp : varsToProcess) { // Use vector instead of m_lhsmap iteration for stability + for (AstVar* varp : + varsToProcess) { // Use vector instead of m_lhsmap iteration for stability const std::map::iterator it = m_lhsmap.find(varp); if (it == m_lhsmap.end()) continue; AstVar* const invarp = it->first;