Skip to content

Instantly share code, notes, and snippets.

@brycelelbach
Created November 3, 2012 02:00
Show Gist options
  • Save brycelelbach/4005495 to your computer and use it in GitHub Desktop.
Save brycelelbach/4005495 to your computer and use it in GitHub Desktop.
void f();
template<
void (*F)()
>
struct action
{
void use()
{
(*F)();
}
};
int main()
{
action<&f> act;
act.use();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment