diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-06-02 15:47:10 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-06-02 15:47:10 (GMT) |
commit | ac05727cb0b43673d0fa219995cb5661b168635a (patch) | |
tree | f058cfd0ca37b7610288706db13859529118abd3 /Source/CTest/cmCTestBuildHandler.h | |
parent | afb83a7d44aedadee549de128ad021a9ce81c90d (diff) | |
download | CMake-ac05727cb0b43673d0fa219995cb5661b168635a.zip CMake-ac05727cb0b43673d0fa219995cb5661b168635a.tar.gz CMake-ac05727cb0b43673d0fa219995cb5661b168635a.tar.bz2 |
ENH: Once the number of errors or warnings was reached, stop counting them. Also fix compile warning on bad compilers
Diffstat (limited to 'Source/CTest/cmCTestBuildHandler.h')
-rw-r--r-- | Source/CTest/cmCTestBuildHandler.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestBuildHandler.h b/Source/CTest/cmCTestBuildHandler.h index fdeac5c..b949e65 100644 --- a/Source/CTest/cmCTestBuildHandler.h +++ b/Source/CTest/cmCTestBuildHandler.h @@ -121,6 +121,12 @@ private: int m_TotalErrors; int m_TotalWarnings; char m_LastTickChar; + + bool m_ErrorQuotaReached; + bool m_WarningQuotaReached; + + int m_MaxErrors; + int m_MaxWarnings; }; #endif |