aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/vector.h
blob: a7df54f44e09d378cfd8de61e033e08912044ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef AL_VECTOR_H
#define AL_VECTOR_H

#include <vector>

#include "almalloc.h"

namespace al {

template<typename T, size_t alignment=DEF_ALIGN>
using vector = std::vector<T, al::allocator<T, alignment>>;

} // namespace al

#endif /* AL_VECTOR_H */