ERR: Fix error

This commit is contained in:
Andy Cedilnik 2004-09-30 17:27:58 -04:00
parent d186bbd719
commit 77209d371f
1 changed files with 8 additions and 8 deletions

View File

@ -49,6 +49,14 @@ public:
void PopulateCustomVectors(cmMakefile *mf);
struct cmCTestCompileErrorWarningRex
{
char* m_RegularExpressionString;
int m_FileIndex;
int m_LineIndex;
cmsys::RegularExpression m_RegularExpression;
};
private:
struct cmCTestBuildErrorWarning
{
@ -62,14 +70,6 @@ private:
std::string m_PostContext;
};
struct cmCTestCompileErrorWarningRex
{
char* m_RegularExpressionString;
int m_FileIndex;
int m_LineIndex;
cmsys::RegularExpression m_RegularExpression;
};
// generate the XML output
void GenerateDartBuildOutput(std::ostream& os,
std::vector<cmCTestBuildErrorWarning>,