From c0a4169afdcf24e2418f6c145401d017a8b619f2 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Sun, 11 Feb 2024 00:30:35 +0000 Subject: [PATCH] Include intrin.h in cpu.cpp for MSVC intrinsics --- src/cpu.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/cpu.cpp b/src/cpu.cpp index f1b498b6c1..3c4b24e5df 100644 --- a/src/cpu.cpp +++ b/src/cpu.cpp @@ -10,6 +10,10 @@ #include "stdafx.h" #include "core/bitmath_func.hpp" +#if defined(_MSC_VER) +#include +#endif + #include "safeguards.h" /**