Skip to content

Instantly share code, notes, and snippets.

@flyx
Created February 2, 2015 08:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flyx/297fadf6ad9555abf52c to your computer and use it in GitHub Desktop.
Save flyx/297fadf6ad9555abf52c to your computer and use it in GitHub Desktop.
class Foo {
std::move_iterator move_it;
int I;
public:
Foo(const int like_to, const std::move_iterator& move_it) :
I(like_to), move_it(move_it) {}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment