aboutsummaryrefslogtreecommitdiffstats
path: root/alc/vector.h
diff options
context:
space:
mode:
Diffstat (limited to 'alc/vector.h')
-rw-r--r--alc/vector.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/alc/vector.h b/alc/vector.h
new file mode 100644
index 00000000..1b69d6a7
--- /dev/null
+++ b/alc/vector.h
@@ -0,0 +1,15 @@
+#ifndef AL_VECTOR_H
+#define AL_VECTOR_H
+
+#include <vector>
+
+#include "almalloc.h"
+
+namespace al {
+
+template<typename T, size_t alignment=alignof(T)>
+using vector = std::vector<T, al::allocator<T, alignment>>;
+
+} // namespace al
+
+#endif /* AL_VECTOR_H */