From: Behdad Esfahbod Date: Sat, 11 May 2019 02:49:26 +0000 (-0700) Subject: [meta] Add is_signed for floating point types X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=25bb7e005d96c367731fd8d129d764d101b1200f;p=platform%2Fupstream%2FlibHarfBuzzSharp.git [meta] Add is_signed for floating point types --- diff --git a/src/hb-meta.hh b/src/hb-meta.hh index 290b41c..f13b256 100644 --- a/src/hb-meta.hh +++ b/src/hb-meta.hh @@ -240,6 +240,9 @@ template <> struct hb_is_signed { static constexpr bool value = tr template <> struct hb_is_signed { static constexpr bool value = false; }; template <> struct hb_is_signed { static constexpr bool value = true; }; template <> struct hb_is_signed { static constexpr bool value = false; }; +template <> struct hb_is_signed { static constexpr bool value = true; }; +template <> struct hb_is_signed { static constexpr bool value = true; }; +template <> struct hb_is_signed { static constexpr bool value = true; }; #define hb_is_signed(T) hb_is_signed::value template struct hb_int_min;