We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
For example for this input; auto m = &S::mem;
auto m = &S::mem;
The output is:
using FuncPtr_7 = int S::*; FuncPtr_7 m = &S::mem;
But m is actually a pointer to member variable.