Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/Compress/Implode/ImplodeHuffmanDecoder.h')
-rwxr-xr-x7zip/Compress/Implode/ImplodeHuffmanDecoder.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/7zip/Compress/Implode/ImplodeHuffmanDecoder.h b/7zip/Compress/Implode/ImplodeHuffmanDecoder.h
index 5a8b4e90..9f7aeca1 100755
--- a/7zip/Compress/Implode/ImplodeHuffmanDecoder.h
+++ b/7zip/Compress/Implode/ImplodeHuffmanDecoder.h
@@ -11,7 +11,6 @@ namespace NImplode {
namespace NHuffman {
const int kNumBitsInLongestCode = 16;
-class CDecoderException{};
typedef NStream::NLSBF::CDecoder<CInBuffer> CInBit;
@@ -25,7 +24,7 @@ public:
CDecoder(UInt32 numSymbols);
~CDecoder();
- void SetCodeLengths(const Byte *codeLengths);
+ bool SetCodeLengths(const Byte *codeLengths);
UInt32 DecodeSymbol(CInBit *inStream);
};