diff options
Diffstat (limited to 'libcxx/include/__algorithm/ranges_move_backward.h')
| -rw-r--r-- | libcxx/include/__algorithm/ranges_move_backward.h | 20 | 
1 files changed, 9 insertions, 11 deletions
| diff --git a/libcxx/include/__algorithm/ranges_move_backward.h b/libcxx/include/__algorithm/ranges_move_backward.h index d4e8eb1a5008..ee390a40e489 100644 --- a/libcxx/include/__algorithm/ranges_move_backward.h +++ b/libcxx/include/__algorithm/ranges_move_backward.h @@ -25,7 +25,7 @@  #  pragma GCC system_header  #endif -#if _LIBCPP_STD_VER > 17 +#if _LIBCPP_STD_VER >= 20  _LIBCPP_BEGIN_NAMESPACE_STD @@ -36,38 +36,36 @@ using move_backward_result = in_out_result<_InIter, _OutIter>;  namespace __move_backward {  struct __fn { -    template <class _InIter, class _Sent, class _OutIter> -  _LIBCPP_HIDE_FROM_ABI constexpr static -  move_backward_result<_InIter, _OutIter> __move_backward_impl(_InIter __first, _Sent __last, _OutIter __result) { +  _LIBCPP_HIDE_FROM_ABI constexpr static move_backward_result<_InIter, _OutIter> +  __move_backward_impl(_InIter __first, _Sent __last, _OutIter __result) {      auto __ret = std::__move_backward<_RangeAlgPolicy>(std::move(__first), std::move(__last), std::move(__result));      return {std::move(__ret.first), std::move(__ret.second)};    }    template <bidirectional_iterator _InIter, sentinel_for<_InIter> _Sent, bidirectional_iterator _OutIter>      requires indirectly_movable<_InIter, _OutIter> -  _LIBCPP_HIDE_FROM_ABI constexpr -  move_backward_result<_InIter, _OutIter> operator()(_InIter __first, _Sent __last, _OutIter __result) const { +  _LIBCPP_HIDE_FROM_ABI constexpr move_backward_result<_InIter, _OutIter> +  operator()(_InIter __first, _Sent __last, _OutIter __result) const {      return __move_backward_impl(std::move(__first), std::move(__last), std::move(__result));    }    template <bidirectional_range _Range, bidirectional_iterator _Iter>      requires indirectly_movable<iterator_t<_Range>, _Iter> -  _LIBCPP_HIDE_FROM_ABI constexpr -  move_backward_result<borrowed_iterator_t<_Range>, _Iter> operator()(_Range&& __range, _Iter __result) const { +  _LIBCPP_HIDE_FROM_ABI constexpr move_backward_result<borrowed_iterator_t<_Range>, _Iter> +  operator()(_Range&& __range, _Iter __result) const {      return __move_backward_impl(ranges::begin(__range), ranges::end(__range), std::move(__result));    } -  };  } // namespace __move_backward  inline namespace __cpo { -  inline constexpr auto move_backward = __move_backward::__fn{}; +inline constexpr auto move_backward = __move_backward::__fn{};  } // namespace __cpo  } // namespace ranges  _LIBCPP_END_NAMESPACE_STD -#endif // _LIBCPP_STD_VER > 17 +#endif // _LIBCPP_STD_VER >= 20  #endif // _LIBCPP___ALGORITHM_RANGES_MOVE_BACKWARD_H | 
