aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm-project/libcxx/include/__atomic/contention_t.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm-project/libcxx/include/__atomic/contention_t.h')
-rw-r--r--contrib/llvm-project/libcxx/include/__atomic/contention_t.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/llvm-project/libcxx/include/__atomic/contention_t.h b/contrib/llvm-project/libcxx/include/__atomic/contention_t.h
index 1d8d02430b4f..65890f338ce9 100644
--- a/contrib/llvm-project/libcxx/include/__atomic/contention_t.h
+++ b/contrib/llvm-project/libcxx/include/__atomic/contention_t.h
@@ -20,9 +20,9 @@
_LIBCPP_BEGIN_NAMESPACE_STD
#if defined(__linux__) || (defined(_AIX) && !defined(__64BIT__))
- using __cxx_contention_t = int32_t;
+using __cxx_contention_t = int32_t;
#else
- using __cxx_contention_t = int64_t;
+using __cxx_contention_t = int64_t;
#endif // __linux__ || (_AIX && !__64BIT__)
using __cxx_atomic_contention_t = __cxx_atomic_impl<__cxx_contention_t>;