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/cmFileAPICodemodel.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/cmFileAPICodemodel.cxx')
-rw-r--r-- | Source/cmFileAPICodemodel.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmFileAPICodemodel.cxx b/Source/cmFileAPICodemodel.cxx index 56221a5..d3683d4 100644 --- a/Source/cmFileAPICodemodel.cxx +++ b/Source/cmFileAPICodemodel.cxx @@ -448,6 +448,7 @@ class Target JBTs<T> ToJBTs(BTs<T> const& bts) { std::vector<JBTIndex> ids; + ids.reserve(bts.Backtraces.size()); for (cmListFileBacktrace const& backtrace : bts.Backtraces) { ids.emplace_back(this->Backtraces.Add(backtrace)); } |