[cmake-commits] king committed cmGlobalUnixMakefileGenerator3.cxx 1.120 1.121 cmGlobalUnixMakefileGenerator3.h 1.50 1.51

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Dec 21 18:32:24 EST 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv12944

Modified Files:
	cmGlobalUnixMakefileGenerator3.cxx 
	cmGlobalUnixMakefileGenerator3.h 
Log Message:
COMP: Remove unused parameter of method.


Index: cmGlobalUnixMakefileGenerator3.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmGlobalUnixMakefileGenerator3.cxx,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -d -r1.120 -r1.121
--- cmGlobalUnixMakefileGenerator3.cxx	21 Dec 2007 20:04:06 -0000	1.120
+++ cmGlobalUnixMakefileGenerator3.cxx	21 Dec 2007 23:32:22 -0000	1.121
@@ -913,8 +913,7 @@
     if(emitted.insert(lib->first).second)
       {
       // Add this dependency.
-      this->AppendAnyGlobalDepend(depends, lib->first.c_str(),
-                                  emitted, target);
+      this->AppendAnyGlobalDepend(depends, lib->first.c_str(), target);
       }
     }
 
@@ -927,7 +926,7 @@
     if(emitted.insert(*util).second)
       {
       // Add this dependency.
-      this->AppendAnyGlobalDepend(depends, util->c_str(), emitted, target);
+      this->AppendAnyGlobalDepend(depends, util->c_str(), target);
       }
     }
 }
@@ -937,7 +936,7 @@
 void
 cmGlobalUnixMakefileGenerator3
 ::AppendAnyGlobalDepend(std::vector<std::string>& depends, const char* name,
-                        std::set<cmStdString>& emitted, cmTarget &target)
+                        cmTarget &target)
 {
   cmTarget *result;
   cmLocalUnixMakefileGenerator3 *lg3;

Index: cmGlobalUnixMakefileGenerator3.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmGlobalUnixMakefileGenerator3.h,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -d -r1.50 -r1.51
--- cmGlobalUnixMakefileGenerator3.h	21 Dec 2007 17:22:12 -0000	1.50
+++ cmGlobalUnixMakefileGenerator3.h	21 Dec 2007 23:32:22 -0000	1.51
@@ -147,7 +147,6 @@
                                  cmTarget& target);
   void AppendAnyGlobalDepend(std::vector<std::string>& depends, 
                              const char* name, 
-                             std::set<cmStdString>& emitted,
                              cmTarget &target);
 
   // does this generator need a requires step for any of its targets



More information about the Cmake-commits mailing list