File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
libcxx/include/__algorithm Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,15 @@ struct in_in_result {
26
26
27
27
template <class _II1 , class _II2 >
28
28
requires convertible_to<const _I1&, _II1> && convertible_to<const _I2&, _II2>
29
- constexpr operator in_in_result<_II1, _II2>() const & {
29
+ _LIBCPP_HIDE_FROM_ABI constexpr
30
+ operator in_in_result<_II1, _II2>() const & {
30
31
return {in1, in2};
31
32
}
32
33
33
34
template <class _II1 , class _II2 >
34
35
requires convertible_to<_I1, _II1> && convertible_to<_I2, _II2>
35
- constexpr operator in_in_result<_II1, _II2>() && { return {_VSTD::move (in1), _VSTD::move (in2)}; }
36
+ _LIBCPP_HIDE_FROM_ABI constexpr
37
+ operator in_in_result<_II1, _II2>() && { return {_VSTD::move (in1), _VSTD::move (in2)}; }
36
38
};
37
39
} // namespace ranges
38
40
You can’t perform that action at this time.
0 commit comments