From d3e73be3fe3bb72ed14840571bc3a5fb611ab67d Mon Sep 17 00:00:00 2001 From: MihailRis Date: Tue, 18 Nov 2025 20:24:18 +0300 Subject: [PATCH] fix windows build again --- src/util/ObjectsPool.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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