הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'element' : not allowed outside of a class definition
Remarks
For example, a nonmember function is declared a friend.
Example
The following example generates C2255:
// C2255.cpp
// compile with: /c
class A {
private:
void func1();
friend void func2();
};
friend void func1() {} // C2255
void func2(){}