From 7f520ff1a2668dd30123112a54528f0d9f07e3b0 Mon Sep 17 00:00:00 2001 From: github action Date: Sun, 17 May 2026 11:35:24 +0000 Subject: [PATCH] Apply 'make format' --- src/V3Active.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/V3Active.cpp b/src/V3Active.cpp index 97e7601b4..956d0d057 100644 --- a/src/V3Active.cpp +++ b/src/V3Active.cpp @@ -510,10 +510,9 @@ class ActiveVisitor final : public VNVisitor { void visit(AstInitialStatic* nodep) override { moveUnderSpecial(nodep); } void visit(AstInitial* nodep) override { const bool timedInitial - = v3Global.opt.timing().isSetTrue() - && nodep->exists([](const AstNode* const subp) { - return VN_IS(subp, Delay) || VN_IS(subp, EventControl); - }); + = v3Global.opt.timing().isSetTrue() && nodep->exists([](const AstNode* const subp) { + return VN_IS(subp, Delay) || VN_IS(subp, EventControl); + }); const ActiveDlyVisitor dlyvisitor{nodep, timedInitial ? ActiveDlyVisitor::CT_SUSPENDABLE : ActiveDlyVisitor::CT_INITIAL}; visitSenItems(nodep);