diff --git a/include/align.hpp b/include/align.hpp index 6b79a656..2f9a33db 100644 --- a/include/align.hpp +++ b/include/align.hpp @@ -7,7 +7,7 @@ #include "helpers.hpp" -#ifdef _MSC_VER +#ifdef _WIN32 #include #endif @@ -77,7 +77,7 @@ namespace Common { } ALWAYS_INLINE static void* alignedMalloc(size_t size, size_t alignment) { -#ifdef _MSC_VER +#ifdef _WIN32 return _aligned_malloc(size, alignment); #else // Unaligned sizes are slow on macOS. @@ -96,4 +96,4 @@ namespace Common { free(ptr); #endif } -} // namespace Common \ No newline at end of file +} // namespace Common