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
replace include of <stop_token> with forward declarations
  • Loading branch information
ericniebler committed Jan 2, 2026
commit 87f51c3514eed71c48083ecad4b0802cd3ed751a
7 changes: 6 additions & 1 deletion include/stdexec/__detail/__stop_token.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@

#include "__concepts.hpp"

#include <stop_token>
STDEXEC_NAMESPACE_STD_BEGIN
class stop_token;

template <class _Callback>
class stop_callback;
STDEXEC_NAMESPACE_STD_END

namespace stdexec {
namespace __stok {
Expand Down
Loading