aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEbrahim Byagowi <ebrahim@gnu.org>2020-07-30 02:01:43 +0430
committerGitHub <noreply@github.com>2020-07-30 02:01:43 +0430
commitd1f13014906d2540ea3f3e6f2aa2781e1314a869 (patch)
tree06c17c4848f00c7285b503a241501bb68a6fb1c4 /src
parent0b74aaece71a3546c8ed4f60866c67b98e3659c0 (diff)
downloadharfbuzz_ng-d1f13014906d2540ea3f3e6f2aa2781e1314a869.tar.gz
[icu] Remove support for versions older than 49
It just doesn't make sense anymore, https://github.com/harfbuzz/harfbuzz/commit/c9e5da8ded390b816613839214fe96137ca0a0a2#r41018112
Diffstat (limited to 'src')
-rw-r--r--src/hb-icu.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/hb-icu.cc b/src/hb-icu.cc
index 4d34d1926..008a39e41 100644
--- a/src/hb-icu.cc
+++ b/src/hb-icu.cc
@@ -242,11 +242,9 @@ static struct hb_icu_unicode_funcs_lazy_loader_t : hb_unicode_funcs_lazy_loader_
static hb_unicode_funcs_t *create ()
{
void *user_data = nullptr;
-#if U_ICU_VERSION_MAJOR_NUM >= 49
UErrorCode icu_err = U_ZERO_ERROR;
user_data = (void *) unorm2_getNFCInstance (&icu_err);
assert (user_data);
-#endif
hb_unicode_funcs_t *funcs = hb_unicode_funcs_create (nullptr);