Update mMath_CPU.cpp

This commit is contained in:
marauder2k7 2026-02-25 16:29:08 +00:00
parent ea6c9cf5e8
commit babde0e6d2

View file

@ -7,13 +7,14 @@
#if defined(__x86_64__) || defined(_M_X64) || defined(__i386) || defined(_M_IX86)
#define TORQUE_MATH_x64 1
#include <intrin.h> // this header will sort out which intrinsics are supported.
#elif defined(__aarch64__) || defined(_M_ARM64)
#define TORQUE_MATH_ARM 1
#include <arm_neon.h>
#else
#define TORQUE_MATH_C 1
#endif
#include <intrin.h> // this header will sort out which intrinsics are supported.
#include <algorithm> // for std::min
//------------------------------------------------------------------------------