From 8658a0d7dc61260cc4d6cbb69e91a7e5c50e7b24 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Mon, 29 Aug 2022 23:05:52 -0400 Subject: [PATCH] Internals: Constructor format update. No functional change. --- src/V3Number_test.cpp | 10 +++++----- src/V3ParseSym.h | 4 ++-- src/V3Trace.cpp | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/V3Number_test.cpp b/src/V3Number_test.cpp index 9aa4ba26c..2e7d090dd 100644 --- a/src/V3Number_test.cpp +++ b/src/V3Number_test.cpp @@ -34,12 +34,12 @@ void test(const string& lhss, const string& op, const string& rhss, const string char* r1 = strdup(rhss.c_str()); char* e1 = strdup(exps.c_str()); - const FileLine fl = new FileLine(FileLine::builtInFinename()); + const FileLine fl = new FileLine{FileLine::builtInFinename()}; - V3Number lhnum(fl, l1); - V3Number rhnum(fl, r1); - V3Number expnum(fl, e1); - V3Number gotnum(fl, expnum.width()); + V3Number lhnum{fl, l1}; + V3Number rhnum{fl, r1}; + V3Number expnum{fl, e1}; + V3Number gotnum{fl, expnum.width()}; if (op == "redOr") { gotnum.opRedOr(lhnum); diff --git a/src/V3ParseSym.h b/src/V3ParseSym.h index 3a60bfbea..87edaef5a 100644 --- a/src/V3ParseSym.h +++ b/src/V3ParseSym.h @@ -67,7 +67,7 @@ public: VSymEnt* findNewTable(AstNode* nodep) { if (!nodep->user4p()) { - VSymEnt* const symsp = new VSymEnt(&m_syms, nodep); + VSymEnt* const symsp = new VSymEnt{&m_syms, nodep}; nodep->user4p(symsp); } return getTable(nodep); @@ -87,7 +87,7 @@ public: void reinsert(AstNode* nodep, VSymEnt* parentp, string name) { if (!parentp) parentp = symCurrentp(); if (name == "") { // New name with space in name so can't collide with users - name = string(" anon") + nodep->type().ascii() + cvtToStr(++s_anonNum); + name = std::string{" anon"} + nodep->type().ascii() + cvtToStr(++s_anonNum); } parentp->reinsert(name, findNewTable(nodep)); } diff --git a/src/V3Trace.cpp b/src/V3Trace.cpp index b6fbb95ce..9a1fe1e3c 100644 --- a/src/V3Trace.cpp +++ b/src/V3Trace.cpp @@ -83,7 +83,7 @@ public: if (activityAlways()) { return "*ALWAYS*"; } else { - return (string(slow() ? "*SLOW* " : "")) + insertp()->name(); + return std::string{slow() ? "*SLOW* " : ""} + insertp()->name(); } } virtual string dotColor() const override { return slow() ? "yellowGreen" : "green"; }