Compiler Error C2277
'identifier' : cannot take address of this member function
You cannot take the address of a member function.
The following sample generates C2277:
// C2277.cpp
class A {
public:
A();
};
(*pctor)() = &A::A; // C2277
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
'identifier' : cannot take address of this member function
You cannot take the address of a member function.
The following sample generates C2277:
// C2277.cpp
class A {
public:
A();
};
(*pctor)() = &A::A; // C2277