'function' : number overloads have no legal conversions for 'this' pointer
The compiler could not convert this to any of the overloaded versions of the member function.
Possible cause
Possible solutions
Example
class C { public: void foo() volatile; void foo(); // adding const here would fix problem }; const C *pcc; void main() { pcc->foo(); // error }