diff --git a/src/hb-meta.hh b/src/hb-meta.hh index 90757d38a..625b36062 100644 --- a/src/hb-meta.hh +++ b/src/hb-meta.hh @@ -188,7 +188,7 @@ template <> struct hb_int_max : hb_integral_constant struct hb_int_max : hb_integral_constant {}; #define hb_int_max(T) hb_int_max::value -#if __GNUG__ && __GNUC__ < 5 +#if defined(__GNUG__) && __GNUC__ < 5 #define hb_is_trivially_copyable(T) __has_trivial_copy(T) #define hb_is_trivially_copy_assignable(T) __has_trivial_assign(T) #define hb_is_trivially_constructible(T) __has_trivial_constructor(T)