Skip to content

Instantly share code, notes, and snippets.

@kalman5
Last active January 25, 2020 08:45
Show Gist options
  • Save kalman5/9ec61b77cbb79982ab86f3e602d1818c to your computer and use it in GitHub Desktop.
Save kalman5/9ec61b77cbb79982ab86f3e602d1818c to your computer and use it in GitHub Desktop.
struct Foo {
void operator()() const & {
std::cout << "l-value" << "\n";
}
void operator()() const && {
std::cout << "r-value" << "\n";
}
};
PrePost(Foo());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment