diff options
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 8ab2aa9..926d5de 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -181,6 +181,7 @@ private: m_Tested = 0; m_UnTested = 0; m_Lines.clear(); + m_Show = false; } std::string m_AbsolutePath; std::string m_FullPath; @@ -188,6 +189,7 @@ private: int m_Tested; int m_UnTested; std::vector<int> m_Lines; + bool m_Show; }; typedef std::vector<cmCTestTestResult> tm_TestResultsVector; |