From: Behdad Esfahbod Date: Thu, 27 Dec 2018 23:29:23 +0000 (-0500) Subject: Fix build on C++ < 11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=357a0a7ad344caf898eb1697fcdb859d118b7a13;p=platform%2Fupstream%2FlibHarfBuzzSharp.git Fix build on C++ < 11 --- diff --git a/src/hb.hh b/src/hb.hh index c6db70a..a608528 100644 --- a/src/hb.hh +++ b/src/hb.hh @@ -399,6 +399,7 @@ static_assert ((sizeof (hb_var_int_t) == 4), ""); #else /* __cpluspplus >= 201103L */ #define HB_NO_COPY_ASSIGN(TypeName) static_assert (true, "") +#define HB_NO_COPY_ASSIGN_TEMPLATE(TypeName, T1, T2) static_assert (true, "") #define HB_NO_COPY_ASSIGN_TEMPLATE2(TypeName, T1, T2) static_assert (true, "") #define HB_NO_CREATE_COPY_ASSIGN(TypeName) static_assert (true, "") #define HB_NO_CREATE_COPY_ASSIGN_TEMPLATE(TypeName, T) static_assert (true, "")