From edab09333c1cd6c355d0a06d635c4cb7066d188d Mon Sep 17 00:00:00 2001 From: github action Date: Mon, 11 May 2026 22:33:56 +0000 Subject: [PATCH] Apply 'make format' --- src/V3Undriven.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/V3Undriven.cpp b/src/V3Undriven.cpp index 62ea73a31..37c514a21 100644 --- a/src/V3Undriven.cpp +++ b/src/V3Undriven.cpp @@ -206,14 +206,14 @@ public: } const AstNode* const initp = nodep->hasUserInit() ? initStaticp() : initialp(); if (initp && contAssignp() && !nodep->isClassMember() && !nodep->isFuncLocal()) { - initp->v3warn( - E_CONTASSINIT, - "Continuous assignment to variable with initial value: " << nodep->prettyNameQ() - << '\n' - << initp->warnMore() << "... Location of variable initialization\n" - << initp->warnContextPrimary() << '\n' - << contAssignp()->warnOther() << "... Location of continuous assignment\n" - << contAssignp()->warnContextSecondary()); + initp->v3warn(E_CONTASSINIT, "Continuous assignment to variable with initial value: " + << nodep->prettyNameQ() << '\n' + << initp->warnMore() + << "... Location of variable initialization\n" + << initp->warnContextPrimary() << '\n' + << contAssignp()->warnOther() + << "... Location of continuous assignment\n" + << contAssignp()->warnContextSecondary()); } if (nodep->isGenVar()) { // Genvar if (!nodep->isIfaceRef() && !nodep->isUsedParam() && !unusedMatch(nodep)) {