diff options
author | Brad King <brad.king@kitware.com> | 2007-07-02 20:04:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-07-02 20:04:15 (GMT) |
commit | e25dd3b903ab11de6b53e63390cdb3f39fd29df1 (patch) | |
tree | deb126e033791af637d0e37336c3cd142531be29 /Source/cmFileCommand.cxx | |
parent | c3fed205e9d69cd53abce314aa049b681002d693 (diff) | |
download | CMake-e25dd3b903ab11de6b53e63390cdb3f39fd29df1.zip CMake-e25dd3b903ab11de6b53e63390cdb3f39fd29df1.tar.gz CMake-e25dd3b903ab11de6b53e63390cdb3f39fd29df1.tar.bz2 |
COMP: Remove unused argument.
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r-- | Source/cmFileCommand.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 58b06f4..d9a2032 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -1251,7 +1251,7 @@ bool cmFileCommand::HandleInstallCommand(std::vector<std::string> 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<std::string> const& args, //---------------------------------------------------------------------------- bool cmFileCommand::DoInstall( cmFileInstaller& installer, - std::map<cmStdString, const char*>& properties, const int itype, const std::string& rename, const std::string& destination, |