File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -28,12 +28,10 @@ using __libcpp_timespec_t = ::timespec;
2828typedef void * __libcpp_mutex_t ;
2929#define _LIBCPP_MUTEX_INITIALIZER 0
3030
31- #if defined(_M_IX86) || defined(__i386__) || defined(_M_ARM) || defined(__arm__)
32- typedef void * __libcpp_recursive_mutex_t [6 ];
33- #elif defined(_M_AMD64) || defined(__x86_64__) || defined(_M_ARM64) || defined(__aarch64__)
31+ #if defined(_WIN64)
3432typedef void * __libcpp_recursive_mutex_t [5 ];
3533#else
36- # error Unsupported architecture
34+ typedef void * __libcpp_recursive_mutex_t [ 6 ];
3735#endif
3836
3937_LIBCPP_EXPORTED_FROM_ABI int __libcpp_recursive_mutex_init (__libcpp_recursive_mutex_t * __m);
Original file line number Diff line number Diff line change @@ -28,12 +28,10 @@ using __libcpp_timespec_t = ::timespec;
2828typedef void * __libcpp_mutex_t ;
2929#define _LIBCPP_MUTEX_INITIALIZER 0
3030
31- #if defined(_M_IX86) || defined(__i386__) || defined(_M_ARM) || defined(__arm__)
32- typedef void * __libcpp_recursive_mutex_t [6 ];
33- #elif defined(_M_AMD64) || defined(__x86_64__) || defined(_M_ARM64) || defined(__aarch64__)
31+ #if defined(_WIN64)
3432typedef void * __libcpp_recursive_mutex_t [5 ];
3533#else
36- # error Unsupported architecture
34+ typedef void * __libcpp_recursive_mutex_t [ 6 ];
3735#endif
3836
3937_LIBCPP_EXPORTED_FROM_ABI int __libcpp_recursive_mutex_init (__libcpp_recursive_mutex_t * __m);
You can’t perform that action at this time.
0 commit comments