diff options
Diffstat (limited to '')
-rw-r--r-- | CPP/7zip/Compress/BZip2Decoder.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/CPP/7zip/Compress/BZip2Decoder.h b/CPP/7zip/Compress/BZip2Decoder.h index a8ef700..4adc564 100644 --- a/CPP/7zip/Compress/BZip2Decoder.h +++ b/CPP/7zip/Compress/BZip2Decoder.h | |||
@@ -27,7 +27,6 @@ bool IsEndSig(const Byte *p) throw(); | |||
27 | bool IsBlockSig(const Byte *p) throw(); | 27 | bool IsBlockSig(const Byte *p) throw(); |
28 | 28 | ||
29 | const unsigned kNumTableBits = 9; | 29 | const unsigned kNumTableBits = 9; |
30 | const unsigned kNumBitsMax = kMaxHuffmanLen; | ||
31 | 30 | ||
32 | typedef NHuffman::CDecoder<kMaxHuffmanLen, kMaxAlphaSize, kNumTableBits> CHuffmanDecoder; | 31 | typedef NHuffman::CDecoder<kMaxHuffmanLen, kMaxAlphaSize, kNumTableBits> CHuffmanDecoder; |
33 | 32 | ||
@@ -99,7 +98,7 @@ struct CBase: public CBitDecoder | |||
99 | UInt32 blockSizeMax; | 98 | UInt32 blockSizeMax; |
100 | 99 | ||
101 | unsigned state; | 100 | unsigned state; |
102 | unsigned state2; | 101 | UInt32 state2; |
103 | unsigned state3; | 102 | unsigned state3; |
104 | unsigned state4; | 103 | unsigned state4; |
105 | unsigned state5; | 104 | unsigned state5; |