diff options
Diffstat (limited to 'libcxx/include/support/win32')
-rw-r--r-- | libcxx/include/support/win32/support.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/include/support/win32/support.h b/libcxx/include/support/win32/support.h index 17ee1980a64..f9613445cff 100644 --- a/libcxx/include/support/win32/support.h +++ b/libcxx/include/support/win32/support.h @@ -18,7 +18,7 @@ #include <cstdarg> // va_ macros // "builtins" not implemented here for Clang or GCC as they provide // implementations. Assuming required for elsewhere else, certainly MSVC. -#if defined(_LIBCPP_MSVC) +#if defined(_LIBCPP_COMPILER_MSVC) #include <intrin.h> #endif #if defined(_LIBCPP_MSVCRT) @@ -49,7 +49,7 @@ size_t wcsnrtombs(char *__restrict dst, const wchar_t **__restrict src, #define _Exit _exit #endif -#if defined(_LIBCPP_MSVC) +#if defined(_LIBCPP_COMPILER_MSVC) // Bit builtin's make these assumptions when calling _BitScanForward/Reverse // etc. These assumptions are expected to be true for Win32/Win64 which this |