◄Up► ◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── Compiler error C2446 'operator' : no conversion between 'type1' and 'type2' The specified types could not be converted into the type required by the operator. The following is an example of this error: class C {}; class D {}; C aC; D aD; void main() { aC = aD; // error } -♦-