Skip to content

Commit

Permalink
Fix unused variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmilk committed Jul 11, 2017
1 parent b79055c commit 23a9dae
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 12 deletions.
3 changes: 0 additions & 3 deletions CPP/7zip/Compress/BrotliDecoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ struct BrotliStream {
ICompressProgressInfo *progress;
UInt64 *processedIn;
UInt64 *processedOut;
CCriticalSection *cs;
int flags;
};

extern int BrotliRead(void *Stream, BROTLIMT_Buffer * in);
Expand Down Expand Up @@ -54,7 +52,6 @@ class CDecoder:public ICompressCoder,
CMyComPtr < ISequentialInStream > _inStream;

DProps _props;
CCriticalSection cs;

UInt64 _processedIn;
UInt64 _processedOut;
Expand Down
3 changes: 0 additions & 3 deletions CPP/7zip/Compress/LizardDecoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ struct LizardStream {
ICompressProgressInfo *progress;
UInt64 *processedIn;
UInt64 *processedOut;
CCriticalSection *cs;
int flags;
};

extern int LizardRead(void *Stream, LIZARDMT_Buffer * in);
Expand Down Expand Up @@ -56,7 +54,6 @@ class CDecoder:public ICompressCoder,
CMyComPtr < ISequentialInStream > _inStream;

DProps _props;
CCriticalSection cs;

UInt64 _processedIn;
UInt64 _processedOut;
Expand Down
3 changes: 0 additions & 3 deletions CPP/7zip/Compress/Lz4Decoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ struct Lz4Stream {
ICompressProgressInfo *progress;
UInt64 *processedIn;
UInt64 *processedOut;
CCriticalSection *cs;
int flags;
};

extern int Lz4Read(void *Stream, LZ4MT_Buffer * in);
Expand Down Expand Up @@ -55,7 +53,6 @@ class CDecoder:public ICompressCoder,
CMyComPtr < ISequentialInStream > _inStream;

DProps _props;
CCriticalSection cs;

UInt64 _processedIn;
UInt64 _processedOut;
Expand Down
3 changes: 0 additions & 3 deletions CPP/7zip/Compress/Lz5Decoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ struct Lz5Stream {
ICompressProgressInfo *progress;
UInt64 *processedIn;
UInt64 *processedOut;
CCriticalSection *cs;
int flags;
};

extern int Lz5Read(void *Stream, LZ5MT_Buffer * in);
Expand Down Expand Up @@ -55,7 +53,6 @@ class CDecoder:public ICompressCoder,
CMyComPtr < ISequentialInStream > _inStream;

DProps _props;
CCriticalSection cs;

UInt64 _processedIn;
UInt64 _processedOut;
Expand Down

0 comments on commit 23a9dae

Please sign in to comment.