Searched defs:hb_remove_const (Results 1 – 1 of 1) sorted by relevance
537 template <typename T> struct hb_remove_const { typedef T value; }; struct538 template <typename T> struct hb_remove_const<const T> { typedef T value; }; struct539 #define hb_remove_const(T) hb_remove_const<T>::value macro