From 01c669e643738fa7159176ee052d878a94438776 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 29 Apr 2009 14:50:28 -0400 Subject: [PATCH] COMP: Avoid unused arg warnings in cmFileCommand The default cmFileCopier::ReportCopy implementation is empty, so we should leave out the argument names. --- Source/cmFileCommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 001d1bb32..a8060b0bb 100644 --- a/Source/cmFileCommand.cxx +++ b/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.