◄Up► ◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── Compiler error C2662 'function' : cannot convert 'this' pointer from 'type1' to 'type2' The required conversion for the this pointer was not defined. A user-defined conversion operator may be required. The following is an example of this error: class __far C { public: void func() __near; } c; void main() { c.func(); // error } -♦-