Merge pull request #1393 from larsclausen/netassignnb-dump-rval-error

NetAssignNB: Fix dump fallback for invalid rval
This commit is contained in:
Cary R. 2026-06-21 07:21:37 -07:00 committed by GitHub
commit a5b9879ada
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1138,7 +1138,7 @@ void NetAssignNB::dump(ostream&o, unsigned ind) const
if (rval())
o << *rval() << ";" << endl;
else
o << "rval elaboration error>;" << endl;
o << "<rval elaboration error>;" << endl;
}