only include <unicode/unistr.h> if ICU >= 59 (attempting to fix current coverage build on travis).

This commit is contained in:
artemp 2017-07-21 10:11:29 +02:00
parent d3ec91b29b
commit 7f4adc2d73

View file

@ -32,7 +32,12 @@
#include <cstdint>
#include <string>
// icu
#if (U_ICU_VERSION_MAJOR_NUM >= 59)
#pragma GCC diagnostic push
#include <mapnik/warning_ignore.hpp>
#include <unicode/unistr.h>
#pragma GCC diagnostic pop
#endif
struct UConverter;