diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-02-18 21:14:26 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-02-20 20:36:57 (GMT) |
commit | 416df93aa93d0a633f0e7354d0562934f676768b (patch) | |
tree | 11937ca00d29012dad0f84e5ab7b93ee374de257 /Source/cmFindBase.cxx | |
parent | 37b88d348a20921c835ce7aa99f6db62271503a7 (diff) | |
download | CMake-416df93aa93d0a633f0e7354d0562934f676768b.zip CMake-416df93aa93d0a633f0e7354d0562934f676768b.tar.gz CMake-416df93aa93d0a633f0e7354d0562934f676768b.tar.bz2 |
Convert some raw loops to cmWrap.
Diffstat (limited to 'Source/cmFindBase.cxx')
-rw-r--r-- | Source/cmFindBase.cxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/cmFindBase.cxx b/Source/cmFindBase.cxx index fd3aa0b..6fe055a 100644 --- a/Source/cmFindBase.cxx +++ b/Source/cmFindBase.cxx @@ -355,11 +355,7 @@ void cmFindBase::PrintFindStuff() std::cerr << "SearchPathSuffixes "; std::cerr << cmJoin(this->SearchPathSuffixes, "\n") << "\n"; std::cerr << "SearchPaths\n"; - for(std::vector<std::string>::const_iterator i = this->SearchPaths.begin(); - i != this->SearchPaths.end(); ++i) - { - std::cerr << "[" << *i << "]\n"; - } + std::cerr << cmWrap("[", this->SearchPaths, "]", "\n") << "\n"; } bool cmFindBase::CheckForVariableInCache() |