ERR: Fix error
This commit is contained in:
parent
d186bbd719
commit
77209d371f
|
@ -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>,
|
||||
|
|
Loading…
Reference in New Issue