Skip to content

Instantly share code, notes, and snippets.

@mcopik
Created July 20, 2016 17:21
Show Gist options
  • Save mcopik/6e1cf89c44df783b08a125b83df80b83 to your computer and use it in GitHub Desktop.
Save mcopik/6e1cf89c44df783b08a125b83df80b83 to your computer and use it in GitHub Desktop.
#include <hpx/util/tuple.hpp>
template<typename T>
void forw(T && t)
{
}
int main()
{
int lvalue;
forw( hpx::util::forward_as_tuple(std::move(lvalue)) );
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment