Skip to content

Commit abce05e

Browse files
authored
also disable forward_like from the compiler
... it seems to cause grief. Again, something to get restored. I tried to replicate this problem and I didn't manage to do so.
1 parent 3e4669f commit abce05e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/beman/execution26/detail/forward_like.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ auto own_forward_like(U&& u) noexcept -> decltype(auto) {
6060

6161
template <typename T, typename U>
6262
auto forward_like(U&& u) noexcept -> decltype(auto) {
63-
#if 202207 <= __cpp_lib_forward_like
63+
#if 202207 <= disabled__cpp_lib_forward_like
6464
return ::std::forward_like<T>(::std::forward<U>(u));
6565
#else
6666
return ::beman::execution26::detail::forward_like_helper<T>::forward(::std::forward<U>(u));

0 commit comments

Comments
 (0)