Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
non-existent member function 'function' specified as friend (member function signature does not match any overload)
Remarks
A function specified as a friend was not found by the compiler.
Example
The following example generates C2245:
// C2245.cpp
// compile with: /c
class B {
   void f(int i);
};
class A {
   int m_i;
   friend void B::f(char);   // C2245
   // try the following line instead
   // friend void B::f(int);
};
void B::f(int i) {
   A a;
   a.m_i = 0;
}