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:
Brad King 2009-04-29 14:50:28 -04:00
parent 7b527a6585
commit 01c669e643
1 changed files with 1 additions and 1 deletions

View File

@ -1039,7 +1039,7 @@ protected:
TypeDir,
TypeLink
};
virtual void ReportCopy(const char* toFile, Type type, bool copy) {}
virtual void ReportCopy(const char*, Type, bool) {}
virtual bool ReportMissing(const char* fromFile)
{
// The input file does not exist and installation is not optional.