From 40f2f2f55189443a6e55098fb5d3e3656ef07907 Mon Sep 17 00:00:00 2001 From: Mark de Wever Date: Sun, 19 Mar 2023 18:06:47 +0100 Subject: [PATCH] [libc++] Change linkage for some functions. Internal linkages fails when building libc++ with modules. Using internal linkage is headers seems questionable to change the linkage. Reviewed By: #libc, philnik Differential Revision: https://reviews.llvm.org/D146384 --- libcxx/include/__algorithm/ranges_find_if.h | 2 +- libcxx/include/__algorithm/ranges_min_element.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libcxx/include/__algorithm/ranges_find_if.h b/libcxx/include/__algorithm/ranges_find_if.h index 0b27b8c..6e2bd4c 100644 --- a/libcxx/include/__algorithm/ranges_find_if.h +++ b/libcxx/include/__algorithm/ranges_find_if.h @@ -31,7 +31,7 @@ _LIBCPP_BEGIN_NAMESPACE_STD namespace ranges { template -_LIBCPP_HIDE_FROM_ABI static constexpr +_LIBCPP_HIDE_FROM_ABI constexpr _Ip __find_if_impl(_Ip __first, _Sp __last, _Pred& __pred, _Proj& __proj) { for (; __first != __last; ++__first) { if (std::invoke(__pred, std::invoke(__proj, *__first))) diff --git a/libcxx/include/__algorithm/ranges_min_element.h b/libcxx/include/__algorithm/ranges_min_element.h index 6f0dec6..4c58adb 100644 --- a/libcxx/include/__algorithm/ranges_min_element.h +++ b/libcxx/include/__algorithm/ranges_min_element.h @@ -32,7 +32,7 @@ namespace ranges { // TODO(ranges): `ranges::min_element` can now simply delegate to `std::__min_element`. template -_LIBCPP_HIDE_FROM_ABI static constexpr +_LIBCPP_HIDE_FROM_ABI constexpr _Ip __min_element_impl(_Ip __first, _Sp __last, _Comp& __comp, _Proj& __proj) { if (__first == __last) return __first; -- 2.7.4