diff --git a/src/util/ObjectsPool.hpp b/src/util/ObjectsPool.hpp index bcd3294c..0dc97fd2 100644 --- a/src/util/ObjectsPool.hpp +++ b/src/util/ObjectsPool.hpp @@ -51,7 +51,7 @@ namespace util { void allocateNew() { std::unique_ptr 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