ENH: fix warning

This commit is contained in:
Ken Martin 2005-07-28 15:24:31 -04:00
parent 47e22fe041
commit ad46c80f7a
2 changed files with 4 additions and 4 deletions

View File

@ -144,7 +144,7 @@ void cmLocalUnixMakefileGenerator3::FormatOutputPath(std::string& path,
void cmLocalUnixMakefileGenerator3 void cmLocalUnixMakefileGenerator3
::WriteCustomCommands(cmTarget &target,std::ostream& ruleFileStream, ::WriteCustomCommands(std::ostream& ruleFileStream,
std::vector<std::string>& cleanFiles) std::vector<std::string>& cleanFiles)
{ {
// add custom commands to the clean rules? // add custom commands to the clean rules?
@ -358,7 +358,7 @@ cmLocalUnixMakefileGenerator3
{ {
cmSystemTools::ExpandListArgument(additional_clean_files, cleanFiles); cmSystemTools::ExpandListArgument(additional_clean_files, cleanFiles);
} }
this->WriteCustomCommands(target,ruleFileStream,cleanFiles); this->WriteCustomCommands(ruleFileStream,cleanFiles);
// Include the rule file for each object. // Include the rule file for each object.
std::string relPath = this->GetHomeRelativeOutputPath(); std::string relPath = this->GetHomeRelativeOutputPath();
@ -679,7 +679,7 @@ cmLocalUnixMakefileGenerator3
{ {
cmSystemTools::ExpandListArgument(additional_clean_files, cleanFiles); cmSystemTools::ExpandListArgument(additional_clean_files, cleanFiles);
} }
this->WriteCustomCommands(target,ruleFileStream, cleanFiles); this->WriteCustomCommands(ruleFileStream, cleanFiles);
// Collect the commands and dependencies. // Collect the commands and dependencies.
std::vector<std::string> commands; std::vector<std::string> commands;

View File

@ -181,7 +181,7 @@ protected:
// this is responsible for writing all of the rules for all this // this is responsible for writing all of the rules for all this
// directories custom commands (but not utility targets) // directories custom commands (but not utility targets)
void WriteCustomCommands(cmTarget &target,std::ostream& os, void WriteCustomCommands(std::ostream& os,
std::vector<std::string>& cleanFiles); std::vector<std::string>& cleanFiles);
// this method Writes the Directory informaiton files // this method Writes the Directory informaiton files