Update of /cvsroot/pclasses/pclasses2/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19977
Modified Files:
Exception.cpp
Log Message:
added a missing return
Index: Exception.cpp
===================================================================
RCS file: /cvsroot/pclasses/pclasses2/src/Exception.cpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Exception.cpp 22 Dec 2004 17:54:34 -0000 1.1.1.1
+++ Exception.cpp 23 Dec 2004 02:25:32 -0000 1.2
@@ -45,6 +45,7 @@
{
_what = err._what;
_source = err._source;
+ return *this;
}
|