Compiler Error C2645
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at 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
}
Show: