diff options
Diffstat (limited to 'libcxx/include/__algorithm/ranges_find_if.h')
| -rw-r--r-- | libcxx/include/__algorithm/ranges_find_if.h | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/libcxx/include/__algorithm/ranges_find_if.h b/libcxx/include/__algorithm/ranges_find_if.h index 65ac122f6677..45ce6e460d68 100644 --- a/libcxx/include/__algorithm/ranges_find_if.h +++ b/libcxx/include/__algorithm/ranges_find_if.h @@ -24,7 +24,7 @@  #  pragma GCC system_header  #endif -#if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_INCOMPLETE_RANGES) +#if _LIBCPP_STD_VER > 17  _LIBCPP_BEGIN_NAMESPACE_STD @@ -45,14 +45,14 @@ struct __fn {    template <input_iterator _Ip, sentinel_for<_Ip> _Sp, class _Proj = identity,              indirect_unary_predicate<projected<_Ip, _Proj>> _Pred> -  _LIBCPP_HIDE_FROM_ABI constexpr +  _LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI constexpr    _Ip operator()(_Ip __first, _Sp __last, _Pred __pred, _Proj __proj = {}) const {      return ranges::__find_if_impl(std::move(__first), std::move(__last), __pred, __proj);    }    template <input_range _Rp, class _Proj = identity,              indirect_unary_predicate<projected<iterator_t<_Rp>, _Proj>> _Pred> -  _LIBCPP_HIDE_FROM_ABI constexpr +  _LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI constexpr    borrowed_iterator_t<_Rp> operator()(_Rp&& __r, _Pred __pred, _Proj __proj = {}) const {      return ranges::__find_if_impl(ranges::begin(__r), ranges::end(__r), __pred, __proj);    } @@ -66,6 +66,6 @@ inline namespace __cpo {  _LIBCPP_END_NAMESPACE_STD -#endif // _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_INCOMPLETE_RANGES) +#endif // _LIBCPP_STD_VER > 17  #endif // _LIBCPP___ALGORITHM_RANGES_FIND_IF_H | 
