From 8f16b86d7e4f96546a2b5a54cbce4b99ce695598 Mon Sep 17 00:00:00 2001 From: Thaddeus Crews Date: Mon, 24 Mar 2025 15:13:08 -0500 Subject: [PATCH] Core: Include `intrin.h` for MSVC --- core/templates/hashfuncs.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/templates/hashfuncs.h b/core/templates/hashfuncs.h index 9bfc1446534..41938b61aaa 100644 --- a/core/templates/hashfuncs.h +++ b/core/templates/hashfuncs.h @@ -55,6 +55,10 @@ #include "core/templates/rid.h" #include "core/typedefs.h" +#ifdef _MSC_VER +#include // Needed for `__umulh` below. +#endif + /** * Hashing functions */