aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/vector.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-07-28 18:56:04 -0700
committerChris Robinson <[email protected]>2019-07-28 18:56:04 -0700
commitcb3e96e75640730b9391f0d2d922eecd9ee2ce79 (patch)
tree23520551bddb2a80354e44da47f54201fdc084f0 /Alc/vector.h
parent93e60919c8f387c36c267ca9faa1ac653254aea6 (diff)
Rename Alc to alc
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 */