]> git.tdb.fi Git - ext/openal.git/blob - common/vector.h
Import OpenAL Soft 1.23.1 sources
[ext/openal.git] / common / vector.h
1 #ifndef AL_VECTOR_H
2 #define AL_VECTOR_H
3
4 #include <vector>
5
6 #include "almalloc.h"
7
8 namespace al {
9
10 template<typename T, size_t alignment=alignof(T)>
11 using vector = std::vector<T, al::allocator<T, alignment>>;
12
13 } // namespace al
14
15 #endif /* AL_VECTOR_H */