Cleared warnings under Clang 3.4 with -Wall
parent
1e215722bc
commit
818828f127
|
|
@ -12,7 +12,7 @@ class CRYPTOPP_DLL BaseN_Encoder : public Unflushable<Filter>
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
BaseN_Encoder(BufferedTransformation *attachment=NULL)
|
BaseN_Encoder(BufferedTransformation *attachment=NULL)
|
||||||
{Detach(attachment);}
|
: m_alphabet(NULL) {Detach(attachment);}
|
||||||
|
|
||||||
BaseN_Encoder(const byte *alphabet, int log2base, BufferedTransformation *attachment=NULL, int padding=-1)
|
BaseN_Encoder(const byte *alphabet, int log2base, BufferedTransformation *attachment=NULL, int padding=-1)
|
||||||
{
|
{
|
||||||
|
|
@ -38,7 +38,7 @@ class CRYPTOPP_DLL BaseN_Decoder : public Unflushable<Filter>
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
BaseN_Decoder(BufferedTransformation *attachment=NULL)
|
BaseN_Decoder(BufferedTransformation *attachment=NULL)
|
||||||
{Detach(attachment);}
|
: m_lookup(NULL) {Detach(attachment);}
|
||||||
|
|
||||||
BaseN_Decoder(const int *lookup, int log2base, BufferedTransformation *attachment=NULL)
|
BaseN_Decoder(const int *lookup, int log2base, BufferedTransformation *attachment=NULL)
|
||||||
{
|
{
|
||||||
|
|
@ -53,7 +53,7 @@ public:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
const int *m_lookup;
|
const int *m_lookup;
|
||||||
int m_padding, m_bitsPerChar, m_outputBlockSize;
|
int /*m_padding,*/ m_bitsPerChar, m_outputBlockSize;
|
||||||
int m_bytePos, m_bitPos;
|
int m_bytePos, m_bitPos;
|
||||||
SecByteBlock m_outBuf;
|
SecByteBlock m_outBuf;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue