|
From: Frank V. C. <fr...@us...> - 2000-10-07 12:06:21
|
Update of /cvsroot/corelinux/corelinux/src/classlibs/corelinux In directory slayer.i.sourceforge.net:/tmp/cvs-serv17669 Modified Files: Exception.cpp Log Message: 116319 Enforced std::string throughout module Index: Exception.cpp =================================================================== RCS file: /cvsroot/corelinux/corelinux/src/classlibs/corelinux/Exception.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Exception.cpp 2000/07/28 01:39:47 1.5 --- Exception.cpp 2000/10/07 12:06:16 1.6 *************** *** 137,141 **** } ! const string & Exception::getFile( void ) const { return theFile; --- 137,141 ---- } ! const std::string & Exception::getFile( void ) const { return theFile; *************** *** 147,151 **** } ! const string & Exception::getWhy( void ) const { return theReason; --- 147,151 ---- } ! const std::string & Exception::getWhy( void ) const { return theReason; *************** *** 158,162 **** ! const string & Exception::getUnwind( void ) const { return theUnwindInfo; --- 158,162 ---- ! const std::string & Exception::getUnwind( void ) const { return theUnwindInfo; *************** *** 225,229 **** } ! void Exception::setWhy( const string & aWhy ) { theReason = aWhy; --- 225,229 ---- } ! void Exception::setWhy( const std::string & aWhy ) { theReason = aWhy; |