|
From: stephan b. <sg...@us...> - 2004-12-24 01:39:48
|
Update of /cvsroot/pclasses/pclasses2/src/System In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv382 Modified Files: PathFinder.cpp Log Message: compile fixes for the P port. Index: PathFinder.cpp =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/System/PathFinder.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- PathFinder.cpp 23 Dec 2004 02:41:17 -0000 1.1 +++ PathFinder.cpp 24 Dec 2004 01:39:30 -0000 1.2 @@ -12,7 +12,7 @@ # include <unistd.h> #endif -#include "PathFinder.hpp" +#include "pclasses/System/PathFinder.h" // CERR is a drop-in replacement for std::cerr, but slightly more // decorative. @@ -31,7 +31,6 @@ PathFinder::~PathFinder() { - DTOROUT(PathFinder) << this->pathString() << std::endl; } PathFinder::PathFinder( const string & p, const string & e, const string & pathsep ) @@ -42,9 +41,9 @@ } - const string & PathFinder::pathSeparator() const + string PathFinder::pathSeparator() const { - return ( ( PathFinder * ) this )->pathseparator; + return this->pathseparator; } void PathFinder::pathSeparator( const string & sep ) |