Internals: Constructor format update. No functional change.

This commit is contained in:
Wilson Snyder 2022-08-29 23:05:52 -04:00
parent c335aad25f
commit 8658a0d7dc
3 changed files with 8 additions and 8 deletions

View File

@ -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);

View File

@ -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));
}

View File

@ -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"; }