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