Skip to content

Commit

Permalink
[fix] Windows name
Browse files Browse the repository at this point in the history
  • Loading branch information
albarrentine committed Aug 19, 2023
1 parent e4982b7 commit 330bd2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vector.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#if defined(_MSC_VER) || defined(__MINGW32__) || defined(__MINGW64__)
#include <malloc.h>
static inline void *aligned_alloc(size_t size, size_t alignment) {
static inline void *aligned_malloc(size_t size, size_t alignment) {
return _aligned_malloc(size, alignment);
}
static inline void *aligned_resize(void *p, size_t old_size, size_t new_size, size_t alignment) {
Expand Down

0 comments on commit 330bd2e

Please sign in to comment.