fix windows build again

This commit is contained in:
MihailRis 2025-11-18 20:24:18 +03:00
parent 263c0e3b57
commit d3e73be3fe

View File

@ -51,7 +51,7 @@ namespace util {
void allocateNew() {
std::unique_ptr<void, AlignedDeleter> ptr(
#if defined(_WIN32)
_aligned_malloc(sizeof(T), alignof(T));
_aligned_malloc(sizeof(T), alignof(T))
#else
std::aligned_alloc(alignof(T), sizeof(T))
#endif