fix struct final, fix formatting

This commit is contained in:
Nick Brereton 2026-03-02 21:01:36 -05:00
parent 1b414fcc26
commit 61f21f22fc
1 changed files with 2 additions and 2 deletions

View File

@ -725,7 +725,7 @@ class TristateVisitor final : public TristateBaseVisitor {
// (different VarXRef dotted paths) must be processed separately.
// E.g. io_ifc.d and io_ifc_local.d both target the same AstVar d in
// the ifc interface, but each instance needs its own contribution slot.
struct PartitionInfo {
struct PartitionInfo final {
RefStrengthVec refs;
string inlinedDots;
};
@ -745,7 +745,7 @@ class TristateVisitor final : public TristateBaseVisitor {
findModportForDotted(nodep, kv.first));
}
} else if (VN_IS(nodep, Iface)) {
// Local driver in an interface module use contribution mechanism
// Local driver in an interface module - use contribution mechanism
// so it can be combined with any external drivers later
insertTristatesSignal(nodep, invarp, refsp, true, "", "", nullptr);
} else {