From d7bc0ff5e57c2e897f3af13a204a06656f2de486 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Fri, 21 Aug 2020 08:30:12 -0400 Subject: [PATCH] Fix GCC warnings --- src/V3EmitC.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/V3EmitC.cpp b/src/V3EmitC.cpp index 926333b26..3bb4aa517 100644 --- a/src/V3EmitC.cpp +++ b/src/V3EmitC.cpp @@ -1252,7 +1252,7 @@ public: // CONSTRUCTORS explicit EmitVarTspSorter(const MTaskIdSet& mtaskIds) : m_mtaskIds{mtaskIds} - , m_serial{++m_serialNext} {} + , m_serial(++m_serialNext) {} // Need () or GCC 4.8 false warning virtual ~EmitVarTspSorter() {} // METHODS virtual bool operator<(const TspStateBase& other) const override {