Searched refs:hb_match_const (Results 1 – 1 of 1) sorted by relevance
100 template <typename T> struct hb_match_const : hb_type_identity_t<T>, hb_bool_constant<false>{}; struct101 template <typename T> struct hb_match_const<const T> : hb_type_identity_t<T>, hb_bool_constant<true… struct102 template <typename T> using hb_remove_const = typename hb_match_const<T>::type;104 #define hb_is_const(T) hb_match_const<T>::value