Compiler Error C2673
'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
}
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
'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
}