fix windows build again
This commit is contained in:
parent
263c0e3b57
commit
d3e73be3fe
@ -51,7 +51,7 @@ namespace util {
|
|||||||
void allocateNew() {
|
void allocateNew() {
|
||||||
std::unique_ptr<void, AlignedDeleter> ptr(
|
std::unique_ptr<void, AlignedDeleter> ptr(
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
_aligned_malloc(sizeof(T), alignof(T));
|
_aligned_malloc(sizeof(T), alignof(T))
|
||||||
#else
|
#else
|
||||||
std::aligned_alloc(alignof(T), sizeof(T))
|
std::aligned_alloc(alignof(T), sizeof(T))
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user