Merge pull request #104570 from Repiteo/core/intrin-fix

Core: Include `intrin.h` for MSVC
This commit is contained in:
Thaddeus Crews 2025-03-24 15:27:24 -05:00
commit c657d4768d
No known key found for this signature in database
GPG key ID: 62181B86FE9E5D84

View file

@ -55,6 +55,10 @@
#include "core/templates/rid.h"
#include "core/typedefs.h"
#ifdef _MSC_VER
#include <intrin.h> // Needed for `__umulh` below.
#endif
/**
* Hashing functions
*/