COMP: Avoid unused arg warnings in cmFileCommand
The default cmFileCopier::ReportCopy implementation is empty, so we should leave out the argument names.
This commit is contained in:
parent
7b527a6585
commit
01c669e643
|
@ -1039,7 +1039,7 @@ protected:
|
||||||
TypeDir,
|
TypeDir,
|
||||||
TypeLink
|
TypeLink
|
||||||
};
|
};
|
||||||
virtual void ReportCopy(const char* toFile, Type type, bool copy) {}
|
virtual void ReportCopy(const char*, Type, bool) {}
|
||||||
virtual bool ReportMissing(const char* fromFile)
|
virtual bool ReportMissing(const char* fromFile)
|
||||||
{
|
{
|
||||||
// The input file does not exist and installation is not optional.
|
// The input file does not exist and installation is not optional.
|
||||||
|
|
Loading…
Reference in New Issue