[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
This commit is contained in:
parent
61363445d4
commit
40f2f2f551
|
@ -31,7 +31,7 @@ _LIBCPP_BEGIN_NAMESPACE_STD
|
|||
namespace ranges {
|
||||
|
||||
template <class _Ip, class _Sp, class _Pred, class _Proj>
|
||||
_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)))
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace ranges {
|
|||
|
||||
// TODO(ranges): `ranges::min_element` can now simply delegate to `std::__min_element`.
|
||||
template <class _Ip, class _Sp, class _Proj, class _Comp>
|
||||
_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;
|
||||
|
|
Loading…
Reference in New Issue
Block a user