mirror of
https://github.com/verilator/verilator.git
synced 2026-09-01 18:36:28 +02:00
C++11: Use member declaration initalizations. No functional change intended.
This commit is contained in:
+1
-1
@@ -497,7 +497,7 @@ public:
|
||||
// Unroll class functions
|
||||
|
||||
UnrollStateful::UnrollStateful()
|
||||
: m_unrollerp(new UnrollVisitor) {}
|
||||
: m_unrollerp{new UnrollVisitor} {}
|
||||
UnrollStateful::~UnrollStateful() { delete m_unrollerp; }
|
||||
|
||||
void UnrollStateful::unrollGen(AstNodeFor* nodep, const string& beginName) {
|
||||
|
||||
Reference in New Issue
Block a user