mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-22 06:59:01 -06:00
cmAlgorithms: Rename cmRange to cmMakeRange.
This commit is contained in:
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user