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
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,14 @@ template <typename T>
class task_dep<T, void, false> : public task_dep_untyped
{
public:
using data_t = T;
using data_t = T;
using dep_type = T;
using op_and_init = ::std::pair<::std::monostate, ::std::bool_constant<false>>;
using op_type = ::std::monostate;
enum : bool
{
does_work = false
};

// Copy constructor
task_dep(const task_dep&) = default;
Expand Down