You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AFAIK, we don't discuss member function pointers (e.g. int (S::*)(float) would be the pointer type of f in struct S{ int f(float); };) and operator.*/operator->* anywhere.
Member pointers are not only super cryptic, they also make good candidates for C++ quizzes (fun!) :)
The text was updated successfully, but these errors were encountered:
This issue or pull request has been automatically marked as stale because it has not had recent activity. Please manually close it, if it is no longer relevant, or ask for help or support to help getting it unstuck. Let me bring this to the attention of @klieret@wdconinc@michmx for now.
AFAIK, we don't discuss member function pointers (e.g.
int (S::*)(float)
would be the pointer type off
instruct S{ int f(float); };
) andoperator.*
/operator->*
anywhere.Member pointers are not only super cryptic, they also make good candidates for C++ quizzes (fun!) :)
The text was updated successfully, but these errors were encountered: