Skip to content
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions include/stdexec/__detail/__diagnostics.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,12 @@ namespace STDEXEC
_WITH_PRETTY_SENDER_<_Sender>,
_WITH_ENVIRONMENT_(_Env)...>;

#if __cpp_lib_constexpr_exceptions >= 202502L // constexpr exception types, https://wg21.link/p3378
#if __cpp_lib_constexpr_exceptions >= 202502L

// constexpr stdlib exception types, https://wg21.link/p3378
using __exception = ::std::exception;

#elif __cpp_constexpr >= 202411L // constexpr virtual functions
#elif __cpp_constexpr >= 201907L && !STDEXEC_MSVC() && !STDEXEC_NVHPC()

// constexpr virtual functions
struct __exception
Expand Down
Loading