[rtsan] Remove mkfifoat interceptor (#116997)
[llvm-project.git] / libcxx / include / __cxx03 / __compare / compare_strong_order_fallback.h
blob5ea1ce7c64d123c17e2f8df5e580ffa1a6a54a14
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef _LIBCPP___COMPARE_COMPARE_STRONG_ORDER_FALLBACK
10 #define _LIBCPP___COMPARE_COMPARE_STRONG_ORDER_FALLBACK
12 #include <__cxx03/__compare/ordering.h>
13 #include <__cxx03/__compare/strong_order.h>
14 #include <__cxx03/__config>
15 #include <__cxx03/__type_traits/decay.h>
16 #include <__cxx03/__type_traits/is_same.h>
17 #include <__cxx03/__utility/forward.h>
18 #include <__cxx03/__utility/priority_tag.h>
20 #ifndef _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER
21 # pragma GCC system_header
22 #endif
24 _LIBCPP_BEGIN_NAMESPACE_STD
26 #if _LIBCPP_STD_VER >= 20
28 // [cmp.alg]
29 namespace __compare_strong_order_fallback {
30 struct __fn {
31 template <class _Tp, class _Up>
32 requires is_same_v<decay_t<_Tp>, decay_t<_Up>>
33 _LIBCPP_HIDE_FROM_ABI static constexpr auto __go(_Tp&& __t, _Up&& __u, __priority_tag<1>) noexcept(
34 noexcept(std::strong_order(std::forward<_Tp>(__t), std::forward<_Up>(__u))))
35 -> decltype(std::strong_order(std::forward<_Tp>(__t), std::forward<_Up>(__u))) {
36 return std::strong_order(std::forward<_Tp>(__t), std::forward<_Up>(__u));
39 template <class _Tp, class _Up>
40 requires is_same_v<decay_t<_Tp>, decay_t<_Up>>
41 _LIBCPP_HIDE_FROM_ABI static constexpr auto __go(_Tp&& __t, _Up&& __u, __priority_tag<0>) noexcept(noexcept(
42 std::forward<_Tp>(__t) == std::forward<_Up>(__u) ? strong_ordering::equal
43 : std::forward<_Tp>(__t) < std::forward<_Up>(__u)
44 ? strong_ordering::less
45 : strong_ordering::greater))
46 -> decltype(std::forward<_Tp>(__t) == std::forward<_Up>(__u) ? strong_ordering::equal
47 : std::forward<_Tp>(__t) < std::forward<_Up>(__u)
48 ? strong_ordering::less
49 : strong_ordering::greater) {
50 return std::forward<_Tp>(__t) == std::forward<_Up>(__u) ? strong_ordering::equal
51 : std::forward<_Tp>(__t) < std::forward<_Up>(__u)
52 ? strong_ordering::less
53 : strong_ordering::greater;
56 template <class _Tp, class _Up>
57 _LIBCPP_HIDE_FROM_ABI constexpr auto operator()(_Tp&& __t, _Up&& __u) const
58 noexcept(noexcept(__go(std::forward<_Tp>(__t), std::forward<_Up>(__u), __priority_tag<1>())))
59 -> decltype(__go(std::forward<_Tp>(__t), std::forward<_Up>(__u), __priority_tag<1>())) {
60 return __go(std::forward<_Tp>(__t), std::forward<_Up>(__u), __priority_tag<1>());
63 } // namespace __compare_strong_order_fallback
65 inline namespace __cpo {
66 inline constexpr auto compare_strong_order_fallback = __compare_strong_order_fallback::__fn{};
67 } // namespace __cpo
69 #endif // _LIBCPP_STD_VER >= 20
71 _LIBCPP_END_NAMESPACE_STD
73 #endif // _LIBCPP___COMPARE_COMPARE_STRONG_ORDER_FALLBACK