Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
try to satisfy gcc
  • Loading branch information
ericniebler committed Dec 15, 2025
commit 6f4c4a6eff26bdf494e311f81772189c45534cf8
6 changes: 3 additions & 3 deletions include/stdexec/__detail/__let.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -635,9 +635,9 @@ namespace stdexec {
};
} // namespace __let

inline constexpr auto let_value = let_value_t{};
inline constexpr auto let_error = let_error_t{};
inline constexpr auto let_stopped = let_stopped_t{};
inline constexpr let_value_t let_value{};
inline constexpr let_error_t let_error{};
inline constexpr let_stopped_t let_stopped{};

template <class _SetTag>
struct __sexpr_impl<__let::__let_t<_SetTag>> : __let::__let_impl<_SetTag> { };
Expand Down
Loading