We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1fc048f + 7d733e8 commit 186f36cCopy full SHA for 186f36c
1 file changed
include/stdexec/stop_token.hpp
@@ -17,6 +17,7 @@
17
#pragma once
18
19
#include "__detail/__stop_token.hpp" // IWYU pragma: export
20
+#include "__detail/__utility.hpp"
21
22
#include <version>
23
#include <cstdint>
@@ -80,7 +81,7 @@ namespace stdexec {
80
81
struct never_stop_token {
82
private:
83
struct __callback_type {
- explicit __callback_type(never_stop_token, auto&&) noexcept {
84
+ explicit __callback_type(never_stop_token, __ignore) noexcept {
85
}
86
};
87
public:
0 commit comments