From 873d2c616c462fa826c291627e46ab742689530c Mon Sep 17 00:00:00 2001 From: Ethan Sifferman Date: Thu, 23 Apr 2026 17:21:07 -0700 Subject: [PATCH] format --- src/V3Delayed.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/V3Delayed.cpp b/src/V3Delayed.cpp index ce74523b9..96ddaabf8 100644 --- a/src/V3Delayed.cpp +++ b/src/V3Delayed.cpp @@ -906,8 +906,8 @@ class DelayedVisitor final : public VNVisitor { // Create a properly-sized 32-bit unsigned constant (post-WidthCommit, width==widthMin). AstConst* makeU32Const(FileLine* flp, const AstNode* contextp, uint32_t value) { - AstConst* const cp = new AstConst{ - flp, AstConst::DTyped{}, contextp->findBasicDType(VBasicDTypeKwd::UINT32)}; + AstConst* const cp = new AstConst{flp, AstConst::DTyped{}, + contextp->findBasicDType(VBasicDTypeKwd::UINT32)}; cp->num().setLong(value); return cp; }