summaryrefslogtreecommitdiff
path: root/src/vector.hh
blob: 987b80f91862804a3b87f7c27e3c495e0b10f64a (plain)
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