From 884b48578d79cc2327467f072e1503b7c64aecf0 Mon Sep 17 00:00:00 2001 From: github action Date: Thu, 30 Oct 2025 22:42:18 +0000 Subject: [PATCH] Apply 'make format' --- src/V3Control.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/V3Control.cpp b/src/V3Control.cpp index 6f2828ecc..a1f432a22 100644 --- a/src/V3Control.cpp +++ b/src/V3Control.cpp @@ -434,11 +434,11 @@ public: if (code.hardError()) return false; for (const auto& itr : m_waivers) { if ((code.isUnder(itr.m_code) || (itr.m_code == V3ErrorCode::I_LINT))) - if ((code.isUnder(itr.m_code) || (itr.m_code == V3ErrorCode::I_LINT)) - && VString::wildmatch(message, itr.m_match) - && WildcardContents::resolve(itr.m_contents)) { - return true; - } + if ((code.isUnder(itr.m_code) || (itr.m_code == V3ErrorCode::I_LINT)) + && VString::wildmatch(message, itr.m_match) + && WildcardContents::resolve(itr.m_contents)) { + return true; + } } return false; }