diff options
author | Brad King <brad.king@kitware.com> | 2009-04-29 18:50:28 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-04-29 18:50:28 (GMT) |
commit | 01c669e643738fa7159176ee052d878a94438776 (patch) | |
tree | 99503d21bb2322a6f373872242fa8fc1e1ef4b11 /Source/cmFileCommand.cxx | |
parent | 7b527a6585ca448f34bfcd682eac670f7c9e5581 (diff) | |
download | CMake-01c669e643738fa7159176ee052d878a94438776.zip CMake-01c669e643738fa7159176ee052d878a94438776.tar.gz CMake-01c669e643738fa7159176ee052d878a94438776.tar.bz2 |
COMP: Avoid unused arg warnings in cmFileCommand
The default cmFileCopier::ReportCopy implementation is empty, so we
should leave out the argument names.
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r-- | Source/cmFileCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 001d1bb..a8060b0 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. |