Browse Source

COMP: Remove unused argument.

Brad King 18 years ago
parent
commit
e25dd3b903
2 changed files with 1 additions and 3 deletions
  1. 1 2
      Source/cmFileCommand.cxx
  2. 0 1
      Source/cmFileCommand.h

+ 1 - 2
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,

+ 0 - 1
Source/cmFileCommand.h

@@ -172,7 +172,6 @@ protected:
                         bool& optional
                        );
   bool DoInstall(cmFileInstaller& installer,
-                 std::map<cmStdString, const char*>& properties,
                  const int itype,
                  const std::string& rename,
                  const std::string& destination,