openal-soft/Alc/vector.h
2018-11-18 23:37:56 -08:00

16 lines
253 B
C++

#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 */