diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-01-03 13:39:39 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-01-03 13:39:39 (GMT) |
commit | 9a1098f52eb7c19ed9c20164b05405a273dc2290 (patch) | |
tree | c17523fc258602e1ba01627cf248dc46bd1ac5be /Source/CPack/cmCPackLog.cxx | |
parent | 1e6bc6e5ee3dee7eff561407d0a7e39add4949ed (diff) | |
download | CMake-9a1098f52eb7c19ed9c20164b05405a273dc2290.zip CMake-9a1098f52eb7c19ed9c20164b05405a273dc2290.tar.gz CMake-9a1098f52eb7c19ed9c20164b05405a273dc2290.tar.bz2 |
COMP: Remove warnings
Diffstat (limited to 'Source/CPack/cmCPackLog.cxx')
-rw-r--r-- | Source/CPack/cmCPackLog.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/CPack/cmCPackLog.cxx b/Source/CPack/cmCPackLog.cxx index d643589..331630b 100644 --- a/Source/CPack/cmCPackLog.cxx +++ b/Source/CPack/cmCPackLog.cxx @@ -82,9 +82,6 @@ void cmCPackLog::Log(int tag, const char* file, int line, const char* msg, size_ // By default no logging bool display = false; - // Should we go to the error stream - bool errorStream = false; - // Display file and line number if debug bool useFileAndLine = m_Debug; @@ -116,7 +113,6 @@ void cmCPackLog::Log(int tag, const char* file, int line, const char* msg, size_ { warning = true; display = true; - errorStream = true; if ( needTagString ) { if ( tagString.size() > 0 ) { tagString += ","; } @@ -127,7 +123,6 @@ void cmCPackLog::Log(int tag, const char* file, int line, const char* msg, size_ { error = true; display = true; - errorStream = true; if ( needTagString ) { if ( tagString.size() > 0 ) { tagString += ","; } |