1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef vector_hh_INCLUDED #define vector_hh_INCLUDED #include "memory.hh" #include <vector> namespace Kakoune { template<typename T, MemoryDomain domain = MemoryDomain::Undefined> using Vector = std::vector<T, Allocator<T, domain>>; } #endif // vector_hh_INCLUDED