cmAlgorithms: Rename cmRange to cmMakeRange.

This commit is contained in:
Stephen Kelly
2015-07-18 10:45:18 +02:00
committed by Brad King
parent 265b9db7c2
commit 8ea0b81d20
14 changed files with 30 additions and 29 deletions

View File

@@ -125,7 +125,7 @@ bool cmFunctionHelperCommand::InvokeInitialPass
std::string argvDef = cmJoin(expandedArgs, ";");
std::vector<std::string>::const_iterator eit
= expandedArgs.begin() + (this->Args.size()-1);
std::string argnDef = cmJoin(cmRange(eit, expandedArgs.end()), ";");
std::string argnDef = cmJoin(cmMakeRange(eit, expandedArgs.end()), ";");
this->Makefile->AddDefinition("ARGV", argvDef.c_str());
this->Makefile->MarkVariableAsUsed("ARGV");
this->Makefile->AddDefinition("ARGN", argnDef.c_str());