summaryrefslogtreecommitdiff
path: root/basecode.h
diff options
context:
space:
mode:
authororangefour <thirdorange@gmx.com>2018-10-22 13:50:04 +0200
committerJeffrey Walton <noloader@gmail.com>2018-10-22 07:50:04 -0400
commit253f1ba5dae248cd194619487a33574a1849e7ad (patch)
tree5dfeeed83a895aac797cb199b50a414876cd2768 /basecode.h
parent8790467fac540fca4f1f60ab14b91b40b58b9be6 (diff)
downloadcryptopp-git-253f1ba5dae248cd194619487a33574a1849e7ad.tar.gz
Fix unused variable warnings (GH #723)
Diffstat (limited to 'basecode.h')
-rw-r--r--basecode.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/basecode.h b/basecode.h
index 1bfe68d1..f95e3e26 100644
--- a/basecode.h
+++ b/basecode.h
@@ -61,7 +61,7 @@ public:
/// \details padding is set to -1, which means use default padding. If not
/// required, then the value must be set via IsolatedInitialize().
BaseN_Decoder(BufferedTransformation *attachment=NULLPTR)
- : m_lookup(NULLPTR), m_padding(0), m_bitsPerChar(0)
+ : m_lookup(NULLPTR), m_bitsPerChar(0)
, m_outputBlockSize(0), m_bytePos(0), m_bitPos(0)
{Detach(attachment);}
@@ -74,7 +74,7 @@ public:
/// \details padding is set to -1, which means use default padding. If not
/// required, then the value must be set via IsolatedInitialize().
BaseN_Decoder(const int *lookup, int log2base, BufferedTransformation *attachment=NULLPTR)
- : m_lookup(NULLPTR), m_padding(0), m_bitsPerChar(0)
+ : m_lookup(NULLPTR), m_bitsPerChar(0)
, m_outputBlockSize(0), m_bytePos(0), m_bitPos(0)
{
Detach(attachment);
@@ -98,7 +98,7 @@ public:
private:
const int *m_lookup;
- int m_padding, m_bitsPerChar, m_outputBlockSize;
+ int m_bitsPerChar, m_outputBlockSize;
int m_bytePos, m_bitPos;
SecByteBlock m_outBuf;
};