6fce8050ee
BufferIterators are large-ish, and need to check the buffer pointer on comparison. Checking against a coord is just a 64 bit comparison.
18 lines
237 B
C++
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
|