From: stephan b. <sg...@us...> - 2004-12-23 05:50:03
|
Update of /cvsroot/pclasses/pclasses2/src/Unicode In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30613 Modified Files: TextStream.cpp Log Message: added several returns to NYI operators to please gcc Index: TextStream.cpp =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/Unicode/TextStream.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- TextStream.cpp 23 Dec 2004 04:32:18 -0000 1.1 +++ TextStream.cpp 23 Dec 2004 05:49:52 -0000 1.2 @@ -67,49 +67,60 @@ TextStream& TextStream::operator<<(Int8 val) { + return *this; } TextStream& TextStream::operator<<(UInt8 val) { + return *this; } TextStream& TextStream::operator<<(Int16 val) { + return *this; } TextStream& TextStream::operator<<(UInt16 val) { + return *this; } TextStream& TextStream::operator<<(Int32 val) { + return *this; } TextStream& TextStream::operator<<(UInt32 val) { + return *this; } #ifdef PCLASSES_HAVE_64BIT_INT TextStream& TextStream::operator<<(Int64 val) { + return *this; } TextStream& TextStream::operator<<(UInt64 val) { + return *this; } #endif TextStream& TextStream::operator<<(float val) { + return *this; } TextStream& TextStream::operator<<(double val) { + return *this; } #ifdef PCLASSES_HAVE_LONG_DOUBLE TextStream& TextStream::operator<<(long double val) { + return *this; } #endif |