Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-meta.hh62 template <bool B, typename T = void> struct hb_enable_if {}; struct
63 template <typename T> struct hb_enable_if<true, T> { typedef T type; }; argument
64 #define hb_enable_if(Cond) typename hb_enable_if<(Cond)>::type* = nullptr macro