Fix -Wreorder warning using GCC

This commit is contained in:
Jeffrey Walton 2018-12-06 08:39:19 -05:00
parent fd15d998be
commit f74b8c8344
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

2
ida.h
View File

@ -23,7 +23,7 @@ class RawIDA : public AutoSignaling<Unflushable<Multichannel<Filter> > >
{
public:
RawIDA(BufferedTransformation *attachment=NULLPTR)
: m_threshold (0), m_channelsReady(0), m_channelsFinished(0)
: m_channelsReady(0), m_channelsFinished(0), m_threshold (0)
{Detach(attachment);}
unsigned int GetThreshold() const {return m_threshold;}