diff options
author | Rose <gfunni234@gmail.com> | 2022-12-10 17:48:09 (GMT) |
---|---|---|
committer | Rose <gfunni234@gmail.com> | 2022-12-10 17:48:09 (GMT) |
commit | 6d15754814e2b7cc53402267f2b1ce6f61e631e8 (patch) | |
tree | dffaf0d92410862c6b92f900b5826b8ea038b765 /Source/cmUVProcessChain.cxx | |
parent | 192903b244b292070cbd96d914811c6f6bacae08 (diff) | |
download | CMake-6d15754814e2b7cc53402267f2b1ce6f61e631e8.zip CMake-6d15754814e2b7cc53402267f2b1ce6f61e631e8.tar.gz CMake-6d15754814e2b7cc53402267f2b1ce6f61e631e8.tar.bz2 |
Make vector operations more efficient
Diffstat (limited to 'Source/cmUVProcessChain.cxx')
-rw-r--r-- | Source/cmUVProcessChain.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmUVProcessChain.cxx b/Source/cmUVProcessChain.cxx index 6040fd8..3faf2f6 100644 --- a/Source/cmUVProcessChain.cxx +++ b/Source/cmUVProcessChain.cxx @@ -241,6 +241,7 @@ bool cmUVProcessChain::InternalData::AddCommand( options.file = config.Arguments[0].c_str(); std::vector<const char*> arguments; + arguments.reserve(config.Arguments.size()); for (auto const& arg : config.Arguments) { arguments.push_back(arg.c_str()); } |