Skip to content

Commit

Permalink
fix(channel): remove superflous T
Browse files Browse the repository at this point in the history
  • Loading branch information
Curve committed Mar 8, 2024
1 parent 8bc501d commit c133a41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cr/channel.inl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace cr
namespace internal
{
template <typename T>
concept valid_recipe = requires(T) {
concept valid_recipe = requires() {
requires not std::same_as<typename T::sender, void>;
requires not std::same_as<typename T::receiver, void>;
requires std::same_as<typename T::is_recipe, std::true_type>;
Expand Down

0 comments on commit c133a41

Please sign in to comment.