[zlib] Refine #if for zlib destructor

This commit is contained in:
Ilya Zverev 2017-03-06 17:21:57 +03:00 committed by Sergey Yershov
parent 14a4dee74b
commit 366574678d

View file

@ -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);