Apply 'make format'

This commit is contained in:
github action 2024-10-06 22:10:07 +00:00
parent 28ecd8e908
commit 08279645ca
2 changed files with 2 additions and 2 deletions

View File

@ -2032,7 +2032,7 @@ void AstRefDType::dump(std::ostream& str) const {
s_recursing = true;
str << " -> ";
if (const auto subp = subDTypep()) {
if (typedefp()) str << "typedef=" << static_cast<void*>(typedefp())<< " -> ";
if (typedefp()) str << "typedef=" << static_cast<void*>(typedefp()) << " -> ";
subp->dump(str);
} else if (const auto subp = typedefp()) {
subp->dump(str);

View File

@ -187,7 +187,7 @@ public:
AstNode* createTypedef(FileLine* fl, const string& name, AstNode* attrsp, AstNodeDType* basep,
AstNodeRange* rangep) {
AstTypedef* const nodep = new AstTypedef{fl, name, attrsp, VFlagChildDType{},
GRAMMARP->createArray(basep, rangep, false)};
GRAMMARP->createArray(basep, rangep, false)};
SYMP->reinsert(nodep);
PARSEP->tagNodep(nodep);
return nodep;