mirror of
https://github.com/verilator/verilator.git
synced 2026-09-03 08:24:31 +02:00
Internals: Use C++14 quoted literal std::string
This commit is contained in:
+1
-1
@@ -253,7 +253,7 @@ class HierBlockUsageCollectVisitor final : public VNVisitorConst {
|
||||
// Don't visit twice
|
||||
if (nodep->user1SetOnce()) return;
|
||||
UINFO(5, "Checking " << nodep->prettyNameQ() << " from "
|
||||
<< (m_hierBlockp ? m_hierBlockp->prettyNameQ() : std::string{"null"})
|
||||
<< (m_hierBlockp ? m_hierBlockp->prettyNameQ() : "null"s)
|
||||
<< std::endl);
|
||||
VL_RESTORER(m_modp);
|
||||
AstModule* const prevHierBlockp = m_hierBlockp;
|
||||
|
||||
Reference in New Issue
Block a user