summaryrefslogtreecommitdiff
path: root/src/meta.hh
blob: 15429ca8adc7ce82f9bc6efe7a6eb76803e5a36a (plain)
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