Skip to content

Commit

Permalink
add qualifier to avoid ambuity error
Browse files Browse the repository at this point in the history
  • Loading branch information
mhaseeb123 committed Oct 31, 2023
1 parent cf75b72 commit ec8215c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/nvexec/stream/transfer.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ namespace nvexec::STDEXEC_STREAM_DETAIL_NS {
Sender sndr_;

template <class... Ts>
using _set_value_t = completion_signatures<set_value_t(__decay_t<Ts>&&...)>;
using _set_value_t = completion_signatures<set_value_t(stdexec::__decay_t<Ts>&&...)>;

template <class Ty>
using _set_error_t = completion_signatures<set_error_t(__decay_t<Ty>&&)>;
using _set_error_t = completion_signatures<set_error_t(stdexec::__decay_t<Ty>&&)>;

template <class Self, class Env>
using _completion_signatures_t = //
Expand Down

0 comments on commit ec8215c

Please sign in to comment.