mirror of
https://github.com/verilator/verilator.git
synced 2026-08-31 01:54:23 +02:00
Internals: Remove extra single-line {}. No functional change.
This commit is contained in:
+2
-2
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user