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?

5 Answers
5

Leave a Comment