Fix GCC warnings

This commit is contained in:
Wilson Snyder 2020-08-21 08:30:12 -04:00
parent 14604a24d6
commit d7bc0ff5e5

View File

@ -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 {