16 lines
194 B
C++
16 lines
194 B
C++
#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
|