Refactor: cmCPackGenerator::DisplayVerboseOutput() unused arg

This commit is contained in:
Alex Turbov 2024-08-31 05:46:37 +04:00
parent 5fd795f975
commit 9c118ae9d4
No known key found for this signature in database
GPG Key ID: 8BEDB7D11F95D5E3

View File

@ -51,10 +51,9 @@ cmCPackGenerator::~cmCPackGenerator()
}
void cmCPackGenerator::DisplayVerboseOutput(const std::string& msg,
float progress)
float /*unused*/)
{
(void)progress;
cmCPackLogger(cmCPackLog::LOG_VERBOSE, "" << msg << std::endl);
cmCPackLogger(cmCPackLog::LOG_VERBOSE, msg << std::endl);
}
int cmCPackGenerator::PrepareNames()