summaryrefslogtreecommitdiff
path: root/authenc.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-10-13 04:40:12 -0400
committerJeffrey Walton <noloader@gmail.com>2017-10-13 04:40:12 -0400
commit5dcf3e8554a5216275e590114c74c45426b29160 (patch)
tree4ed71b209b8338f870a8ac9f8d02b4c92e38b61b /authenc.h
parent1315c1fe2f35f1ad82077c1717d763817d205f31 (diff)
downloadcryptopp-git-5dcf3e8554a5216275e590114c74c45426b29160.tar.gz
Fix GCC -Wreorder warning
Diffstat (limited to 'authenc.h')
-rw-r--r--authenc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/authenc.h b/authenc.h
index d09efcc2..95ad590f 100644
--- a/authenc.h
+++ b/authenc.h
@@ -41,8 +41,8 @@ NAMESPACE_BEGIN(CryptoPP)
class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE AuthenticatedSymmetricCipherBase : public AuthenticatedSymmetricCipher
{
public:
- AuthenticatedSymmetricCipherBase() : m_state(State_Start), m_bufferedDataLength(0),
- m_totalHeaderLength(0), m_totalMessageLength(0), m_totalFooterLength(0) {}
+ AuthenticatedSymmetricCipherBase() : m_totalHeaderLength(0), m_totalMessageLength(0),
+ m_totalFooterLength(0), m_bufferedDataLength(0), m_state(State_Start) {}
// StreamTransformation interface
bool IsRandomAccess() const {return false;}