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
}
Tätä selainta ei enää tueta.
Päivitä Microsoft Edgeen, jotta voit hyödyntää uusimpia ominaisuuksia, suojauspäivityksiä ja teknistä tukea.
'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
}