Skip to content

Instantly share code, notes, and snippets.

@lshort
Created May 25, 2014 06: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 lshort/cf4eed3f3ef3e332a372 to your computer and use it in GitHub Desktop.
Save lshort/cf4eed3f3ef3e332a372 to your computer and use it in GitHub Desktop.
template<typename return_type, typename ...params>
auto _L( return_type (*fp) (params... args))
{ return [fp] (params... args) { return fp(args...); }; };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment