From 41e5f6b7d5e374ed73bbb3ac2e15cd9368b44a9a Mon Sep 17 00:00:00 2001 From: github action Date: Thu, 19 Jan 2023 23:22:37 +0000 Subject: [PATCH] Apply 'make format' --- src/V3Param.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/V3Param.cpp b/src/V3Param.cpp index 5807b4769..f5abe2e29 100644 --- a/src/V3Param.cpp +++ b/src/V3Param.cpp @@ -330,9 +330,7 @@ class ParamProcessor final { key += " "; key += paramValueKey(dtypep->subDTypep()); } else if (const AstBasicDType* const dtypep = VN_CAST(nodep, BasicDType)) { - if (dtypep->isSigned()) { - key += " signed"; - } + if (dtypep->isSigned()) { key += " signed"; } if (dtypep->isRanged()) { key += "[" + cvtToStr(dtypep->left()) + ":" + cvtToStr(dtypep->right()) + "]"; }