Skip to content
Snippets Groups Projects
Commit 9a1098f5 authored by Andy Cedilnik's avatar Andy Cedilnik
Browse files

COMP: Remove warnings

parent 1e6bc6e5
No related branches found
No related tags found
No related merge requests found
......@@ -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 += ","; }
......
......@@ -135,7 +135,6 @@ int main (int argc, char *argv[])
log.SetOutputPrefix("CPack: ");
log.SetVerbosePrefix("CPack Verbose: ");
int res = 0;
cmSystemTools::EnableMSVCDebugHook();
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, "For project: " << projName << std::endl);
res = cpackGenerator->ProcessGenerator();
int res = cpackGenerator->ProcessGenerator();
if ( !res )
{
cmCPack_Log(&log, cmCPackLog::LOG_ERROR, "Error when generating package: " << cpackProjectName.c_str() << std::endl);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment