summaryrefslogtreecommitdiff
path: root/Source/cmAddLibraryCommand.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-01-24 18:18:56 +0100
committerStephen Kelly <steveire@gmail.com>2015-02-06 19:04:09 +0100
commit39622c995c189b4e22dfdc0e9aa29c8fce5eac17 (patch)
tree27f3d5c6b11a9fce61fbbef094d0cbce09cce569 /Source/cmAddLibraryCommand.cxx
parenta7fcc148bdfa5e9f2c6901b0de8192f5aa043741 (diff)
downloadcmake-39622c995c189b4e22dfdc0e9aa29c8fce5eac17.tar.gz
Convert while loop to member insert.
Diffstat (limited to 'Source/cmAddLibraryCommand.cxx')
-rw-r--r--Source/cmAddLibraryCommand.cxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/cmAddLibraryCommand.cxx b/Source/cmAddLibraryCommand.cxx
index db2f6fb0ef..edf82bdbc3 100644
--- a/Source/cmAddLibraryCommand.cxx
+++ b/Source/cmAddLibraryCommand.cxx
@@ -435,11 +435,7 @@ bool cmAddLibraryCommand
cmSystemTools::Message(msg.c_str() ,"Warning");
}
- while (s != args.end())
- {
- srclists.push_back(*s);
- ++s;
- }
+ srclists.insert(srclists.end(), s, args.end());
this->Makefile->AddLibrary(libName, type, srclists, excludeFromAll);