[CRT] Don't define _DECLSPEC_I on Clang builds

This commit is contained in:
Timo Kreuzer 2019-02-03 17:49:29 +01:00
parent f6e819fcb8
commit afe203a1a5

View file

@ -207,7 +207,7 @@ allow GCC to optimize away some EH unwind code, at least in DW2 case. */
#define _CRT_UNUSED(x) (void)x
#endif
#ifdef _MSC_VER
#if defined(_MSC_VER) && !defined(__clang__)
#define ATTRIB_NORETURN
#define _DECLSPEC_INTRIN_TYPE __declspec(intrin_type)
#else