Make updates to type cast based on compiler instead of OS (#7851)

This commit is contained in:
Srihari-mcw 2024-06-17 23:53:17 +05:30 committed by GitHub
parent 7c26775adb
commit 5b6da18750
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,7 +17,7 @@
#define MIN(a, b) ((a) < (b) ? (a) : (b)) #define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MAX(a, b) ((a) > (b) ? (a) : (b)) #define MAX(a, b) ((a) > (b) ? (a) : (b))
#if defined(_WIN32) #if defined(_MSC_VER)
#define m512bh(p) p #define m512bh(p) p
#define m512i(p) p #define m512i(p) p