Poznámka
Na prístup k tejto stránke sa vyžaduje oprávnenie. Môžete sa skúsiť prihlásiť alebo zmeniť adresáre.
Na prístup k tejto stránke sa vyžaduje oprávnenie. Môžete skúsiť zmeniť adresáre.
'function' : global functions do not have 'this' pointers
Remarks
A global function tried to access this.
Example
The following example generates C2673:
// C2673.cpp
int main() {
this = 0; // C2673
}