From f51fddc2e7cfa2a2118610a3fc4b02886544d0a9 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Mon, 2 Dec 2019 21:04:23 +0100 Subject: Simplify a bit B2DPolyRange::appendElement (basegfx) push_back is more optimized than an insert Change-Id: I8932c4ee61569b5eee3d5dbc5fbfd8eff624d061 Reviewed-on: https://gerrit.libreoffice.org/84276 Tested-by: Jenkins Reviewed-by: Noel Grandin --- basegfx/source/range/b2dpolyrange.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'basegfx/source/range/b2dpolyrange.cxx') diff --git a/basegfx/source/range/b2dpolyrange.cxx b/basegfx/source/range/b2dpolyrange.cxx index f5ead1641d15..21905e408167 100644 --- a/basegfx/source/range/b2dpolyrange.cxx +++ b/basegfx/source/range/b2dpolyrange.cxx @@ -52,10 +52,10 @@ namespace basegfx return std::make_tuple(maRanges[nIndex], maOrient[nIndex]); } - void appendElement(const B2DRange& rRange, B2VectorOrientation eOrient, sal_uInt32 nCount) + void appendElement(const B2DRange& rRange, B2VectorOrientation eOrient) { - maRanges.insert(maRanges.end(), nCount, rRange); - maOrient.insert(maOrient.end(), nCount, eOrient); + maRanges.push_back(rRange); + maOrient.push_back(eOrient); maBounds.expand(rRange); } @@ -130,9 +130,9 @@ namespace basegfx return mpImpl->getElement(nIndex); } - void B2DPolyRange::appendElement(const B2DRange& rRange, B2VectorOrientation eOrient, sal_uInt32 nCount) + void B2DPolyRange::appendElement(const B2DRange& rRange, B2VectorOrientation eOrient) { - mpImpl->appendElement(rRange, eOrient, nCount ); + mpImpl->appendElement(rRange, eOrient); } void B2DPolyRange::clear() -- cgit