2014-03-21 00:54:37 -07:00
|
|
|
#ifndef AL_VECTOR_H
|
|
|
|
#define AL_VECTOR_H
|
|
|
|
|
2018-11-18 01:33:26 -08:00
|
|
|
#include <vector>
|
2014-03-21 00:54:37 -07:00
|
|
|
|
2016-05-21 03:27:51 -07:00
|
|
|
#include "almalloc.h"
|
|
|
|
|
2018-11-18 01:33:26 -08:00
|
|
|
namespace al {
|
|
|
|
|
|
|
|
template<typename T, size_t alignment=DEF_ALIGN>
|
|
|
|
using vector = std::vector<T, al::allocator<T, alignment>>;
|
|
|
|
|
|
|
|
} // namespace al
|
|
|
|
|
2014-03-21 00:54:37 -07:00
|
|
|
#endif /* AL_VECTOR_H */
|