Add support for U_ICU_VERSION_MAJOR_NUM >= 59 (#3729)

This commit is contained in:
artemp 2017-07-19 16:07:39 +02:00
parent 24d07e7792
commit 9e58c89043
2 changed files with 5 additions and 1 deletions

View file

@ -40,6 +40,7 @@
#include <mapnik/warning_ignore.hpp>
#include <harfbuzz/hb.h>
#include <harfbuzz/hb-ft.h>
#include <unicode/uvernum.h>
#include <unicode/uscript.h>
#pragma GCC diagnostic pop
@ -54,7 +55,8 @@ static inline hb_script_t _icu_script_to_script(UScriptCode script)
static inline const uint16_t * uchar_to_utf16(const UChar* src)
{
static_assert(sizeof(UChar) == sizeof(uint16_t),"UChar is eq size to uint16_t");
#if defined(_MSC_VER)
#if defined(_MSC_VER) || (U_ICU_VERSION_MAJOR_NUM >= 59)
// ^^ http://site.icu-project.org/download/59#TOC-ICU4C-char16_t1
return reinterpret_cast<const uint16_t *>(src);
#else
return src;

View file

@ -31,6 +31,8 @@
// std
#include <cstdint>
#include <string>
// icu
#include <unicode/unistr.h>
struct UConverter;