mirror of
https://github.com/verilator/verilator.git
synced 2026-09-01 10:27:04 +02:00
C++11: Use member declaration initalizations. No functional change intended.
This commit is contained in:
+2
-3
@@ -153,14 +153,13 @@ public:
|
||||
// Edge types
|
||||
|
||||
class SplitEdge : public V3GraphEdge {
|
||||
uint32_t m_ignoreInStep; // Step number that if set to, causes this edge to be ignored
|
||||
uint32_t m_ignoreInStep = 0; // Step number that if set to, causes this edge to be ignored
|
||||
static uint32_t s_stepNum; // Global step number
|
||||
protected:
|
||||
enum { WEIGHT_NORMAL = 10 };
|
||||
SplitEdge(V3Graph* graphp, V3GraphVertex* fromp, V3GraphVertex* top, int weight,
|
||||
bool cutable = CUTABLE)
|
||||
: V3GraphEdge(graphp, fromp, top, weight, cutable)
|
||||
, m_ignoreInStep(0) {}
|
||||
: V3GraphEdge(graphp, fromp, top, weight, cutable) {}
|
||||
virtual ~SplitEdge() override {}
|
||||
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user