openal-soft/Alc/vector.h

16 lines
253 B
C
Raw Normal View History

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