blob: 151f102097d11c1af234a506661338ce677399eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef meta_hh_INCLUDED
#define meta_hh_INCLUDED
namespace Kakoune::inline Meta
{
struct AnyType{};
template<typename T> struct Type : AnyType {};
}
#endif // meta_hh_INCLUDED
|