Are pointer to member functions not callable object

I am reading C++ Primer 5th edition and there I came across the following statement: As a result, unlike ordinary function pointers, a pointer to a member is not a callable object; these pointers do not support the function-call operator. So my question is: Is the highlighted part correct according to the standard? My current… Read More Are pointer to member functions not callable object