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

@@ -270,7 +270,7 @@ bool cmFileCommand::HandleWriteCommand(std::vector<std::string> const& args,
this->SetError(error);
return false;
}
std::string message = cmJoin(cmRange(i, args.end()), std::string());
std::string message = cmJoin(cmMakeRange(i, args.end()), std::string());
file << message;
file.close();
if(mode)