Skip to content

Commit

Permalink
fix: gcc build
Browse files Browse the repository at this point in the history
  • Loading branch information
Curve committed Oct 6, 2023
1 parent 28664b3 commit b733262
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/cr/channel.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ namespace cr
struct recipe
{
using is_recipe = std::true_type;
using sender = sender<internal::deduce_t<T...>>;
using receiver = receiver<internal::deduce_t<T...>>;
using sender = cr::sender<internal::deduce_t<T...>>;
using receiver = cr::receiver<internal::deduce_t<T...>>;
};

template <typename... T>
Expand Down

0 comments on commit b733262

Please sign in to comment.