[cmake-commits] king committed cmFileCommand.cxx 1.86 1.87
cmFileCommand.h 1.28 1.29
cmake-commits at cmake.org
cmake-commits at cmake.org
Mon Jul 2 16:04:17 EDT 2007
Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv29858
Modified Files:
cmFileCommand.cxx cmFileCommand.h
Log Message:
COMP: Remove unused argument.
Index: cmFileCommand.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmFileCommand.h,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- cmFileCommand.h 2 Jul 2007 18:56:57 -0000 1.28
+++ cmFileCommand.h 2 Jul 2007 20:04:15 -0000 1.29
@@ -172,7 +172,6 @@
bool& optional
);
bool DoInstall(cmFileInstaller& installer,
- std::map<cmStdString, const char*>& properties,
const int itype,
const std::string& rename,
const std::string& destination,
Index: cmFileCommand.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmFileCommand.cxx,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -d -r1.86 -r1.87
--- cmFileCommand.cxx 2 Jul 2007 18:56:57 -0000 1.86
+++ cmFileCommand.cxx 2 Jul 2007 20:04:14 -0000 1.87
@@ -1251,7 +1251,7 @@
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::DoInstall( cmFileInstaller& installer,
- std::map<cmStdString, const char*>& properties,
const int itype,
const std::string& rename,
const std::string& destination,
More information about the Cmake-commits
mailing list