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' : global functions do not have 'this' pointers
A global function tried to access this
.
The following sample generates C2673:
// C2673.cpp
int main() {
this = 0; // C2673
}