pointer to data member

Burton, Felix felix.burton at windriver.com
Wed Apr 4 00:50:44 UTC 2001


How is pmv supposed to be represented in the example below?


struct V {
	int v;
};

struct A : virtual V {
	int a;
};

void main()
{
	int A::*pma = &A::a;
	int A::*pmv = &A::v;
}




More information about the cxx-abi-dev mailing list