home/src/meta.hh
Maxime Coste a49e175727 Migrate to a more value based meta programming model
Introduce Meta::Type<T> to store a type as value, and pass it
around, migrate enum_desc and option_type_name to this.
2017-03-15 17:42:02 +00:00

15 lines
159 B
C++

#ifndef meta_hh_INCLUDED
#define meta_hh_INCLUDED
namespace Kakoune
{
namespace Meta
{
template<typename T> struct Type {};
}
}
#endif // meta_hh_INCLUDED