First Commit

This commit is contained in:
2025-02-06 22:24:29 +08:00
parent ed7df4c81e
commit 7539e6a53c
18116 changed files with 6181499 additions and 0 deletions

15
externals/openal-soft/common/vector.h vendored Normal file
View File

@@ -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 */