[cmake-commits] alex committed cmTarget.cxx 1.136 1.137 cmTarget.h
1.81 1.82
cmake-commits at cmake.org
cmake-commits at cmake.org
Wed May 9 09:36:01 EDT 2007
Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv11082
Modified Files:
cmTarget.cxx cmTarget.h
Log Message:
STYLE: functions use upper case for the first letter
Alex
Index: cmTarget.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmTarget.h,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -d -r1.81 -r1.82
--- cmTarget.h 9 May 2007 12:25:45 -0000 1.81
+++ cmTarget.h 9 May 2007 13:35:59 -0000 1.82
@@ -295,7 +295,7 @@
* Checks the prebuild, prelink and postbuild custom commands for known
* targets and adds them to the dependencies.
*/
- void checkForTargetsAsCommand(const std::vector<cmCustomCommand>& commands);
+ void CheckForTargetsAsCommand(const std::vector<cmCustomCommand>& commands);
/**
Index: cmTarget.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmTarget.cxx,v
retrieving revision 1.136
retrieving revision 1.137
diff -u -d -r1.136 -r1.137
--- cmTarget.cxx 9 May 2007 12:25:45 -0000 1.136
+++ cmTarget.cxx 9 May 2007 13:35:59 -0000 1.137
@@ -410,7 +410,7 @@
void
-cmTarget::checkForTargetsAsCommand(const std::vector<cmCustomCommand>& commands)
+cmTarget::CheckForTargetsAsCommand(const std::vector<cmCustomCommand>& commands)
{
for ( std::vector<cmCustomCommand>::const_iterator cli = commands.begin();
cli != commands.end();
@@ -529,10 +529,10 @@
}
}
}
-
- checkForTargetsAsCommand(this->GetPreBuildCommands());
- checkForTargetsAsCommand(this->GetPreLinkCommands());
- checkForTargetsAsCommand(this->GetPostBuildCommands());
+
+ CheckForTargetsAsCommand(this->GetPreBuildCommands());
+ CheckForTargetsAsCommand(this->GetPreLinkCommands());
+ CheckForTargetsAsCommand(this->GetPostBuildCommands());
while (!srcFilesToProcess.empty())
{
More information about the Cmake-commits
mailing list