mirror of
https://github.com/verilator/verilator.git
synced 2026-09-02 02:38:15 +02:00
Internals: C++11 style cleanups. No functional change.
This commit is contained in:
@@ -298,12 +298,12 @@ public:
|
||||
|
||||
void V3LinkLValue::linkLValue(AstNetlist* nodep) {
|
||||
UINFO(4, __FUNCTION__ << ": " << endl);
|
||||
{ LinkLValueVisitor visitor(nodep, VAccess::NOCHANGE); } // Destruct before checking
|
||||
{ LinkLValueVisitor visitor{nodep, VAccess::NOCHANGE}; } // Destruct before checking
|
||||
V3Global::dumpCheckGlobalTree("linklvalue", 0, v3Global.opt.dumpTreeLevel(__FILE__) >= 6);
|
||||
}
|
||||
void V3LinkLValue::linkLValueSet(AstNode* nodep) {
|
||||
// Called by later link functions when it is known a node needs
|
||||
// to be converted to a lvalue.
|
||||
UINFO(9, __FUNCTION__ << ": " << endl);
|
||||
LinkLValueVisitor visitor(nodep, VAccess::WRITE);
|
||||
LinkLValueVisitor visitor{nodep, VAccess::WRITE};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user