1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef meta_hh_INCLUDED #define meta_hh_INCLUDED namespace Kakoune { inline namespace Meta { struct AnyType{}; template<typename T> struct Type : AnyType {}; template<typename T> using void_t = void; } } #endif // meta_hh_INCLUDED