Move some ambisonic-related macros to a separate header
[openal-soft.git] / Alc / vector.h
bloba7df54f44e09d378cfd8de61e033e08912044ed4
1 #ifndef AL_VECTOR_H
2 #define AL_VECTOR_H
4 #include <vector>
6 #include "almalloc.h"
8 namespace al {
10 template<typename T, size_t alignment=DEF_ALIGN>
11 using vector = std::vector<T, al::allocator<T, alignment>>;
13 } // namespace al
15 #endif /* AL_VECTOR_H */