summaryrefslogtreecommitdiffstats
path: root/Source/cmFunctionCommand.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-07-18 08:45:18 (GMT)
committerBrad King <brad.king@kitware.com>2015-07-22 14:58:19 (GMT)
commit8ea0b81d20d3fff15e4aa35d68945cb1f0f011ec (patch)
tree96dfe2e7743014216485b7175bfa3114cc7408c1 /Source/cmFunctionCommand.cxx
parent265b9db7c2c865c5aad821bf9a377ea84dfe431e (diff)
downloadCMake-8ea0b81d20d3fff15e4aa35d68945cb1f0f011ec.zip
CMake-8ea0b81d20d3fff15e4aa35d68945cb1f0f011ec.tar.gz
CMake-8ea0b81d20d3fff15e4aa35d68945cb1f0f011ec.tar.bz2
cmAlgorithms: Rename cmRange to cmMakeRange.
Diffstat (limited to 'Source/cmFunctionCommand.cxx')
-rw-r--r--Source/cmFunctionCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFunctionCommand.cxx b/Source/cmFunctionCommand.cxx
index 78853ce..c883ad7 100644
--- a/Source/cmFunctionCommand.cxx
+++ b/Source/cmFunctionCommand.cxx
@@ -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());