Searched defs:hb_enable_if (Results 1 – 1 of 1) sorted by relevance
62 template <bool B, typename T = void> struct hb_enable_if {}; struct63 template <typename T> struct hb_enable_if<true, T> { typedef T type; }; argument64 #define hb_enable_if(Cond) typename hb_enable_if<(Cond)>::type* = nullptr macro