🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
254 B

  1. #ifndef AL_VECTOR_H
  2. #define AL_VECTOR_H
  3. #include <vector>
  4. #include "almalloc.h"
  5. namespace al {
  6. template<typename T, size_t alignment=alignof(T)>
  7. using vector = std::vector<T, al::allocator<T, alignment>>;
  8. } // namespace al
  9. #endif /* AL_VECTOR_H */