mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
Make sure unnused parameters are /*named*/
This commit is contained in:
@@ -259,7 +259,7 @@ int cmCPackArchiveGenerator::PackageFiles()
|
||||
return 1;
|
||||
}
|
||||
|
||||
int cmCPackArchiveGenerator::GenerateHeader(std::ostream*)
|
||||
int cmCPackArchiveGenerator::GenerateHeader(std::ostream* /*unused*/)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
@@ -50,7 +50,7 @@ static const char* cmDocumentationOptions[][2] = {
|
||||
{ CM_NULLPTR, CM_NULLPTR }
|
||||
};
|
||||
|
||||
int cpackUnknownArgument(const char*, void*)
|
||||
int cpackUnknownArgument(const char* /*unused*/, void* /*unused*/)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user