הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'function' : static member functions do not have 'this' pointers
Remarks
A static member function tried to access this.
Example
The following example generates C2671:
// C2671.cpp
struct S {
static S* const func() { return this; } // C2671
};