This commit is contained in:
Igor Pavlov
2021-07-22 23:00:14 +01:00
committed by Kornel
parent 4a960640a3
commit 585698650f
619 changed files with 34904 additions and 10859 deletions

View File

@@ -30,7 +30,7 @@ public:
_extraSize = 0;
}
size_t GetRem() const { return _bufLim + 1 - _buf; }
size_t GetRem() const { return (size_t)(_bufLim + 1 - _buf); }
bool WasExtraReadError_Fast() const { return _extraSize > 4; }
bool WasFinishedOK() const
@@ -238,7 +238,7 @@ public:
bool WasBlockFinished() const { return _unpackBlockSize == 0; }
const Byte *GetUnpackData() const { return _unpackedData; }
const UInt32 GetUnpackSize() const { return _pos - _writePos; }
UInt32 GetUnpackSize() const { return _pos - _writePos; }
};
}}