diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-04-07 22:21:04 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-04-07 22:21:04 (GMT) |
commit | a956b8c68c37eaa924ce3cfd57db2b7ec410a2b1 (patch) | |
tree | e7d093e31967a694e0129278a4988c8e0afac38d /Source/cmCTest.h | |
parent | b2e2c29d97ad6c185ff775328fbc1268b5427920 (diff) | |
download | CMake-a956b8c68c37eaa924ce3cfd57db2b7ec410a2b1.zip CMake-a956b8c68c37eaa924ce3cfd57db2b7ec410a2b1.tar.gz CMake-a956b8c68c37eaa924ce3cfd57db2b7ec410a2b1.tar.bz2 |
Some cov improvements and better esc
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 5e252c3..8ab2aa9 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -175,12 +175,14 @@ private: { cmCTestCoverage() { + m_AbsolutePath = ""; m_FullPath = ""; m_Covered = false; m_Tested = 0; m_UnTested = 0; m_Lines.clear(); } + std::string m_AbsolutePath; std::string m_FullPath; bool m_Covered; int m_Tested; |