Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'identifier' : __based modifier illegal on pointer to member
The __based
modifier cannot be used for pointers to members.
The following sample generates C2638:
// C2638.cpp
void *a;
class C {
public:
int i;
int j;
int func();
};
int __based (a) C::* cpi = &C::i; // C2638
int (__based (a) C::* cpf)() = &C::func; // c2638