summaryrefslogtreecommitdiff
path: root/ida.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-12-06 08:39:19 -0500
committerJeffrey Walton <noloader@gmail.com>2018-12-06 08:39:19 -0500
commitf74b8c8344e5e65a86098a3a43d6ecb52b2b5aab (patch)
tree9abd21fc86b48a30f9325d17b9d6dcf59985aad1 /ida.h
parentfd15d998be20dacd1e19c8e383468d3f19a2826d (diff)
downloadcryptopp-git-f74b8c8344e5e65a86098a3a43d6ecb52b2b5aab.tar.gz
Fix -Wreorder warning using GCC
Diffstat (limited to 'ida.h')
-rw-r--r--ida.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ida.h b/ida.h
index 7600b81a..82b48df1 100644
--- a/ida.h
+++ b/ida.h
@@ -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;}