forked from organicmaps/organicmaps
[zlib] Refine #if for zlib destructor
This commit is contained in:
parent
14a4dee74b
commit
366574678d
1 changed files with 2 additions and 1 deletions
|
@ -59,7 +59,8 @@ ZLib::DeflateProcessor::DeflateProcessor(void const * data, size_t size, ZLib::L
|
|||
|
||||
ZLib::DeflateProcessor::~DeflateProcessor() noexcept
|
||||
{
|
||||
#if !defined(OMIM_OS_ANDROID)
|
||||
#if !defined(OMIM_OS_ANDROID) && ZLIB_VERNUM >= 0x1253
|
||||
// deflatePending() was added in zlib 1.2.5.1 and refined in 1.2.5.3
|
||||
unsigned bytes = 0;
|
||||
int bits = 0;
|
||||
auto const ret = deflatePending(&m_stream, &bytes, &bits);
|
||||
|
|
Loading…
Add table
Reference in a new issue