diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-18 08:45:18 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-07-22 14:58:19 (GMT) |
commit | 8ea0b81d20d3fff15e4aa35d68945cb1f0f011ec (patch) | |
tree | 96dfe2e7743014216485b7175bfa3114cc7408c1 /Source/cmFindBase.cxx | |
parent | 265b9db7c2c865c5aad821bf9a377ea84dfe431e (diff) | |
download | CMake-8ea0b81d20d3fff15e4aa35d68945cb1f0f011ec.zip CMake-8ea0b81d20d3fff15e4aa35d68945cb1f0f011ec.tar.gz CMake-8ea0b81d20d3fff15e4aa35d68945cb1f0f011ec.tar.bz2 |
cmAlgorithms: Rename cmRange to cmMakeRange.
Diffstat (limited to 'Source/cmFindBase.cxx')
-rw-r--r-- | Source/cmFindBase.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmFindBase.cxx b/Source/cmFindBase.cxx index add06a7..7959ffe 100644 --- a/Source/cmFindBase.cxx +++ b/Source/cmFindBase.cxx @@ -170,8 +170,8 @@ bool cmFindBase::ParseArguments(std::vector<std::string> const& argsIn) else { this->VariableDocumentation += "one of the "; - this->VariableDocumentation += cmJoin(cmRange(this->Names).retreat(1), - ", "); + this->VariableDocumentation += + cmJoin(cmMakeRange(this->Names).retreat(1), ", "); this->VariableDocumentation += " or " + this->Names[this->Names.size() - 1] + " libraries be found"; } |