Skip to content

Instantly share code, notes, and snippets.

@hkaiser
Created November 3, 2015 22:13
Show Gist options
  • Save hkaiser/c5b5d7b629598892475a to your computer and use it in GitHub Desktop.
Save hkaiser/c5b5d7b629598892475a to your computer and use it in GitHub Desktop.
struct comp {};
void foo(comp const& c)
{
async(&foo, std::ref(c));
}
void bar(comp && c)
{
async(&foo, std::move(c));
}
bar(comp());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment