From: stephan b. <sg...@us...> - 2004-12-23 05:54:44
|
Update of /cvsroot/pclasses/pclasses2/src/IO In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31493 Modified Files: IODevice.cpp Log Message: added a missing return *this from op=(IOD) Index: IODevice.cpp =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/IO/IODevice.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- IODevice.cpp 23 Dec 2004 04:32:17 -0000 1.1 +++ IODevice.cpp 23 Dec 2004 05:54:27 -0000 1.2 @@ -114,6 +114,7 @@ _valid = dev._valid; _access = dev._access; _eof = dev._eof; + return *this; } |