Expand Minimize
This topic has not yet been rated - Rate this topic

Compiler Error C2645

no qualified name for pointer to member (found ':: *')

The declaration of a pointer to a member does not specify a class.

The following sample generates C2645:

// C2645.cpp
class A {};
int main() {
   int B::* bp;   // C2645 B not defined
   int A::* ap;   // OK
}
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.