Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

drop support for P2300R5-style senders and receivers #1132

Merged
merged 3 commits into from
Nov 3, 2023

Conversation

ericniebler
Copy link
Collaborator

the sender concept now requires enable_sender<Sndr> == true. the easiest way to achieve that is to give your sender types a nested type alias is_sender.

struct my_sender {
  using is_sender = _unspecified_;
  ...
};

likewise for receivers; they should have a nested is_receiver type alias.

the sender concept now requires `enable_sender<Sndr> == true`.
the easiest way to achieve that is to give your sender types
a nested type alias `is_sender`.

  struct my_sender {
    using is_sender = _unspecified_;
    ...
  };

likewise for receivers; they should have a nested `is_receiver`
type alias.
@ericniebler ericniebler merged commit 9fb4521 into main Nov 3, 2023
@ericniebler ericniebler deleted the drop-r5-support branch November 3, 2023 01:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant