Internals: Remove extra single-line {}. No functional change.

This commit is contained in:
Wilson Snyder
2024-03-27 17:57:49 -04:00
parent 341963e820
commit 0ff77fc352
35 changed files with 53 additions and 53 deletions
+2 -2
View File
@@ -198,12 +198,12 @@ class ClassVisitor final : public VNVisitor {
void visit(AstInitial* nodep) override {
// But not AstInitialAutomatic, which remains under the class
iterateChildren(nodep);
if (m_packageScopep) { m_toScopeMoves.emplace_back(nodep, m_packageScopep); }
if (m_packageScopep) m_toScopeMoves.emplace_back(nodep, m_packageScopep);
}
void visit(AstInitialStatic* nodep) override {
// But not AstInitialAutomatic, which remains under the class
iterateChildren(nodep);
if (m_packageScopep) { m_toScopeMoves.emplace_back(nodep, m_packageScopep); }
if (m_packageScopep) m_toScopeMoves.emplace_back(nodep, m_packageScopep);
}
void setStructModulep(AstNodeUOrStructDType* const dtypep) {