17 lines
271 B
C++
17 lines
271 B
C++
|
#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
|