Fix GCC warnings
This commit is contained in:
parent
14604a24d6
commit
d7bc0ff5e5
|
|
@ -1252,7 +1252,7 @@ public:
|
||||||
// CONSTRUCTORS
|
// CONSTRUCTORS
|
||||||
explicit EmitVarTspSorter(const MTaskIdSet& mtaskIds)
|
explicit EmitVarTspSorter(const MTaskIdSet& mtaskIds)
|
||||||
: m_mtaskIds{mtaskIds}
|
: m_mtaskIds{mtaskIds}
|
||||||
, m_serial{++m_serialNext} {}
|
, m_serial(++m_serialNext) {} // Need () or GCC 4.8 false warning
|
||||||
virtual ~EmitVarTspSorter() {}
|
virtual ~EmitVarTspSorter() {}
|
||||||
// METHODS
|
// METHODS
|
||||||
virtual bool operator<(const TspStateBase& other) const override {
|
virtual bool operator<(const TspStateBase& other) const override {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue