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;
28
28
typedef void * __libcpp_mutex_t ;
29
29
#define _LIBCPP_MUTEX_INITIALIZER 0
30
30
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)
34
32
typedef void * __libcpp_recursive_mutex_t [5 ];
35
33
#else
36
- # error Unsupported architecture
34
+ typedef void * __libcpp_recursive_mutex_t [ 6 ];
37
35
#endif
38
36
39
37
_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;
28
28
typedef void * __libcpp_mutex_t ;
29
29
#define _LIBCPP_MUTEX_INITIALIZER 0
30
30
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)
34
32
typedef void * __libcpp_recursive_mutex_t [5 ];
35
33
#else
36
- # error Unsupported architecture
34
+ typedef void * __libcpp_recursive_mutex_t [ 6 ];
37
35
#endif
38
36
39
37
_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