COMP: Fix cmCTestVC member access for HP compiler

The HP C++ compiler needs some help to allow access to some member
classes of cmCTestVC.
This commit is contained in:
Brad King 2009-02-25 15:45:14 -05:00
parent 80282b749f
commit 7dbacb94f4
2 changed files with 5 additions and 1 deletions

View File

@ -274,7 +274,8 @@ bool cmCTestSVN::UpdateImpl()
}
//----------------------------------------------------------------------------
class cmCTestSVN::LogParser: public OutputLogger, private cmXMLParser
class cmCTestSVN::LogParser: public cmCTestVC::OutputLogger,
private cmXMLParser
{
public:
LogParser(cmCTestSVN* svn, const char* prefix):

View File

@ -78,6 +78,9 @@ protected:
std::string Log;
};
struct File;
friend struct File;
/** Represent change to one file. */
struct File
{