Under the “Callable” page at cppreference it states:
Notes: Pointers to data members are Callable, even though no function calls take place.
Pointers to function members makes sense: why are pointers to data members Callable if they can’t be called?
[func.def]/3
A callable type is a function object type ([function.objects]) or a pointer to member.