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, 0 insertions, 15 deletions
diff --git a/Alc/vector.h b/Alc/vector.h
deleted file mode 100644
index 1b69d6a7..00000000
--- a/Alc/vector.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#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 */