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.
'function' : static member functions do not have 'this' pointers
A static
member function tried to access this
.
The following sample generates C2671:
// C2671.cpp
struct S {
static S* const func() { return this; } // C2671
};