From 6509bac59e0688592e4751ac1310eb719cb3ab78 Mon Sep 17 00:00:00 2001 From: github action Date: Thu, 2 May 2024 23:03:39 +0000 Subject: [PATCH] Apply 'make format' --- src/V3PreProc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/V3PreProc.cpp b/src/V3PreProc.cpp index a84c39c30..e5f930387 100644 --- a/src/V3PreProc.cpp +++ b/src/V3PreProc.cpp @@ -712,8 +712,8 @@ string V3PreProcImp::defineSubst(VDefineRef* refp) { // Substitute const string subst = iter->second; if (subst == "") { - // Normally `` is removed later, but with no token after, we're otherwise - // stuck, so remove proceeding `` + // Normally `` is removed later, but with no token after, we're + // otherwise stuck, so remove proceeding `` if (out.size() >= 2 && out.substr(out.size() - 2) == "``") { out = out.substr(0, out.size() - 2); }