mirror of
https://github.com/verilator/verilator.git
synced 2026-09-04 08:33:38 +02:00
Internals: Favor s string literals. No functional change.
This commit is contained in:
+1
-1
@@ -146,7 +146,7 @@ public:
|
||||
SplitVarPostVertex(V3Graph* graphp, AstNode* nodep)
|
||||
: SplitNodeVertex{graphp, nodep} {}
|
||||
~SplitVarPostVertex() override = default;
|
||||
string name() const override { return string{"POST "} + SplitNodeVertex::name(); }
|
||||
string name() const override { return "POST "s + SplitNodeVertex::name(); }
|
||||
string dotColor() const override { return "CadetBlue"; }
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user