Home
last modified time | relevance | path

Searched defs:hb_enable_if (Results 1 – 1 of 1) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-meta.hh55 template <bool B, typename T = void> struct hb_enable_if {}; struct
56 template <typename T> struct hb_enable_if<true, T> { typedef T type; }; struct
57 #define hb_enable_if(Cond) typename hb_enable_if<(Cond)>::type* = nullptr macro