From e25dd3b903ab11de6b53e63390cdb3f39fd29df1 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 2 Jul 2007 16:04:15 -0400 Subject: [PATCH] COMP: Remove unused argument. --- Source/cmFileCommand.cxx | 3 +-- Source/cmFileCommand.h | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 58b06f4e3..d9a20327c 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -1251,7 +1251,7 @@ bool cmFileCommand::HandleInstallCommand(std::vector const& args) optional); if (result == true) { - result = this->DoInstall(installer, properties, + result = this->DoInstall(installer, itype, rename, destination, files, optional); } return result; @@ -1572,7 +1572,6 @@ bool cmFileCommand::ParseInstallArgs(std::vector const& args, //---------------------------------------------------------------------------- bool cmFileCommand::DoInstall( cmFileInstaller& installer, - std::map& properties, const int itype, const std::string& rename, const std::string& destination, diff --git a/Source/cmFileCommand.h b/Source/cmFileCommand.h index 501a8c3ea..c779cf3e8 100644 --- a/Source/cmFileCommand.h +++ b/Source/cmFileCommand.h @@ -172,7 +172,6 @@ protected: bool& optional ); bool DoInstall(cmFileInstaller& installer, - std::map& properties, const int itype, const std::string& rename, const std::string& destination,