diff options
author | Chris Robinson <[email protected]> | 2019-08-11 20:53:20 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-08-11 20:54:21 -0700 |
commit | f290bf275189726ebc81610ef4f1f667ca723fe3 (patch) | |
tree | 30d560321a68a24c858ac622fb9db6b18d40b42f /alc | |
parent | e200569cd319448d12099f27a2713c69da382d26 (diff) |
Move vector.h to common
Diffstat (limited to 'alc')
-rw-r--r-- | alc/vector.h | 15 |
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 */ |