TITLE: Suppressing operator = RESPONSE: jamshid@ses.com, 14 Jan 94 I am getting a cryptic error message from Cfront so I tried running the file through a better C++ compiler (~jamshid/sunbin/eccp). One unexpected error it caught were errors like "../CommonDataTypes/tcollection.h", line 256: error: too few arguments for operator function operator = (); I looked it up in the ARM and sure enough any binary operator defined as a member function must be declared as taking one parameter. So, we should change occurances of: private: operator = (); // disallow (no implementation) to private: operator=(TBaseList&); // disallow (no implementation) when we get the chance.