COMP: Remove warnings

This commit is contained in:
Andy Cedilnik 2006-01-03 08:39:39 -05:00
parent 1e6bc6e5ee
commit 9a1098f52e
2 changed files with 1 additions and 7 deletions

View File

@ -82,9 +82,6 @@ void cmCPackLog::Log(int tag, const char* file, int line, const char* msg, size_
// By default no logging // By default no logging
bool display = false; bool display = false;
// Should we go to the error stream
bool errorStream = false;
// Display file and line number if debug // Display file and line number if debug
bool useFileAndLine = m_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; warning = true;
display = true; display = true;
errorStream = true;
if ( needTagString ) if ( needTagString )
{ {
if ( tagString.size() > 0 ) { tagString += ","; } 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; error = true;
display = true; display = true;
errorStream = true;
if ( needTagString ) if ( needTagString )
{ {
if ( tagString.size() > 0 ) { tagString += ","; } if ( tagString.size() > 0 ) { tagString += ","; }

View File

@ -135,7 +135,6 @@ int main (int argc, char *argv[])
log.SetOutputPrefix("CPack: "); log.SetOutputPrefix("CPack: ");
log.SetVerbosePrefix("CPack Verbose: "); log.SetVerbosePrefix("CPack Verbose: ");
int res = 0;
cmSystemTools::EnableMSVCDebugHook(); cmSystemTools::EnableMSVCDebugHook();
if ( cmSystemTools::GetCurrentWorkingDirectory().size() == 0 ) if ( cmSystemTools::GetCurrentWorkingDirectory().size() == 0 )
@ -321,7 +320,7 @@ int main (int argc, char *argv[])
cmCPack_Log(&log, cmCPackLog::LOG_VERBOSE, "Use generator: " << cpackGenerator->GetNameOfClass() << std::endl); cmCPack_Log(&log, cmCPackLog::LOG_VERBOSE, "Use generator: " << cpackGenerator->GetNameOfClass() << std::endl);
cmCPack_Log(&log, cmCPackLog::LOG_VERBOSE, "For project: " << projName << std::endl); cmCPack_Log(&log, cmCPackLog::LOG_VERBOSE, "For project: " << projName << std::endl);
res = cpackGenerator->ProcessGenerator(); int res = cpackGenerator->ProcessGenerator();
if ( !res ) if ( !res )
{ {
cmCPack_Log(&log, cmCPackLog::LOG_ERROR, "Error when generating package: " << cpackProjectName.c_str() << std::endl); cmCPack_Log(&log, cmCPackLog::LOG_ERROR, "Error when generating package: " << cpackProjectName.c_str() << std::endl);