diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-04 18:03:28 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-05 09:28:27 +0200 |
commit | 80f990b8e3d05e47e041685a7811f1352d03ad4d (patch) | |
tree | 2b2c045c75544767499aea0d2b18e1890e9b9566 /sc/source/ui/unoobj | |
parent | c2139cafe6240991f88b85c1df12613d0ae0e821 (diff) |
clang-tidy performance-inefficient-vector-operation
Change-Id: Iebcaea7b08c5284946d83b6b6b9ed26b218025d4
Reviewed-on: https://gerrit.libreoffice.org/59992
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/ui/unoobj')
-rw-r--r-- | sc/source/ui/unoobj/chart2uno.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/ui/unoobj/chart2uno.cxx b/sc/source/ui/unoobj/chart2uno.cxx index 0ceb4de7b766..0647d54c8d1e 100644 --- a/sc/source/ui/unoobj/chart2uno.cxx +++ b/sc/source/ui/unoobj/chart2uno.cxx @@ -1553,7 +1553,8 @@ ScChart2DataProvider::createDataSource( //reorder labeled sequences according to aSequenceMapping ::std::vector< uno::Reference< chart2::data::XLabeledDataSequence > > aSeqVector; - for (auto const & aSeq : aSeqs) + aSeqVector.reserve(aSeqs.size()); + for (auto const& aSeq : aSeqs) { aSeqVector.push_back(aSeq); } |