kakoune/src/meta.hh
Maxime Coste 6fce8050ee Use BufferCoord sentinel type for regex matching on BufferIterators
BufferIterators are large-ish, and need to check the buffer pointer
on comparison. Checking against a coord is just a 64 bit comparison.
2018-11-01 21:51:10 +11:00

18 lines
237 B
C++

#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