Browse Source

COMP: Avoid unused arg warnings in cmFileCommand

The default cmFileCopier::ReportCopy implementation is empty, so we
should leave out the argument names.
Brad King 16 years ago
parent
commit
01c669e643
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmFileCommand.cxx

+ 1 - 1
Source/cmFileCommand.cxx

@@ -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.