Quick Q: How do I typedef a function pointer with "using"? -- StackOverflow
In the "why use using instead of typedef" department:
How do I typedef a function pointer with the C++11 using syntax?
I'd like to write this
typedef void (*FunctionPtr)();using
using
. How would I do that?