Skip to content

Commit

Permalink
Resolved conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
cielavenir committed Feb 9, 2025
1 parent 437e463 commit a589f24
Show file tree
Hide file tree
Showing 14 changed files with 7 additions and 17 deletions.
2 changes: 0 additions & 2 deletions CPP/7zip/Archive/LizardHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ class CHandler:

UInt64 _packSize;
UInt64 _unpackSize;
UInt64 _numStreams;
UInt64 _numBlocks;

CSingleMethodProps _props;

Expand Down
2 changes: 0 additions & 2 deletions CPP/7zip/Archive/Lz4Handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ class CHandler:

UInt64 _packSize;
UInt64 _unpackSize;
UInt64 _numStreams;
UInt64 _numBlocks;

CSingleMethodProps _props;

Expand Down
2 changes: 0 additions & 2 deletions CPP/7zip/Archive/Lz5Handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ class CHandler:

UInt64 _packSize;
UInt64 _unpackSize;
UInt64 _numStreams;
UInt64 _numBlocks;

CSingleMethodProps _props;

Expand Down
2 changes: 1 addition & 1 deletion CPP/7zip/Archive/LzHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ class CCompressProgressInfoImp:
MY_UNKNOWN_IMP1(ICompressProgressInfo)

public:
STDMETHOD(SetRatioInfo)(const UInt64 *inSize, const UInt64 *outSize) noexcept;
STDMETHOD(SetRatioInfo)(const UInt64 *inSize, const UInt64 *outSize) noexcept OVERRIDE;
void Init(IArchiveOpenCallback *callback) { Callback = callback; }

virtual ~CCompressProgressInfoImp() = default;
Expand Down
4 changes: 2 additions & 2 deletions CPP/7zip/Compress/LzhamRegister.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ namespace NCompress
{
lzham_compress_state_ptr _state;
CProps _props;
bool _dictSizeSet;
// bool _dictSizeSet;
int _num_threads;

Byte *_inBuf;
Expand Down Expand Up @@ -465,7 +465,7 @@ namespace NCompress

CEncoder::CEncoder() :
_state(NULL),
_dictSizeSet(false),
// _dictSizeSet(false),
_num_threads(-1),
_inBuf(NULL),
_outBuf(NULL),
Expand Down
4 changes: 4 additions & 0 deletions CPP/7zip/Compress/ZstdDecoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@ class CDecoder : public ICompressCoder,
HRESULT CodeResume(ISequentialOutStream *outStream, const UInt64 *outSize,
ICompressProgressInfo *progress);

#ifndef Z7_NO_READ_FROM_CODER_ZSTD
UInt64 GetInputProcessedSize() const { return _inProcessed; }
#endif

CDecoder();
virtual ~CDecoder();
};
Expand Down
1 change: 0 additions & 1 deletion CPP/Common/Blake3Reg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class CBLAKE3Hasher:
public CMyUnknownImp
{
blake3_hasher _ctx;
Byte mtDummy[1 << 7];

public:
CBLAKE3Hasher() { blake3_hasher_init(&_ctx); }
Expand Down
1 change: 0 additions & 1 deletion CPP/Common/Md2Reg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class CMD2Hasher:
public CMyUnknownImp
{
MD2_CTX _ctx;
Byte mtDummy[1 << 7];

public:
CMD2Hasher() { MD2_Init(&_ctx); }
Expand Down
1 change: 0 additions & 1 deletion CPP/Common/Md4Reg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class CMD4Hasher:
public CMyUnknownImp
{
MD4_CTX _ctx;
Byte mtDummy[1 << 7];

public:
CMD4Hasher() { MD4_Init(&_ctx); }
Expand Down
1 change: 0 additions & 1 deletion CPP/Common/Md5Reg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class CMD5Hasher:
public CMyUnknownImp
{
MD5_CTX _ctx;
Byte mtDummy[1 << 7];

public:
CMD5Hasher() { MD5_Init(&_ctx); }
Expand Down
1 change: 0 additions & 1 deletion CPP/Common/Sha384Reg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class CSHA384Hasher:
public CMyUnknownImp
{
SHA384_CTX _ctx;
Byte mtDummy[1 << 7];

public:
CSHA384Hasher() { SHA384_Init(&_ctx); }
Expand Down
1 change: 0 additions & 1 deletion CPP/Common/Sha512Reg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class CSHA512Hasher:
public CMyUnknownImp
{
SHA512_CTX _ctx;
Byte mtDummy[1 << 7];

public:
CSHA512Hasher() { SHA512_Init(&_ctx); }
Expand Down
1 change: 0 additions & 1 deletion CPP/Common/XXH32Reg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ class CXXH32Hasher:
public CMyUnknownImp
{
XXH32_state_t *_ctx;
Byte mtDummy[1 << 7];

public:
CXXH32Hasher() { _ctx = XXH32_createState(); }
Expand Down
1 change: 0 additions & 1 deletion CPP/Common/XXH64Reg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ class CXXH64Hasher:
public CMyUnknownImp
{
XXH64_state_t *_ctx;
Byte mtDummy[1 << 7];

public:
CXXH64Hasher() { _ctx = XXH64_createState(); }
Expand Down

0 comments on commit a589f24

Please sign in to comment.