summaryrefslogtreecommitdiff
path: root/vcl/source/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-09-13 16:44:19 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-09-14 08:29:45 +0200
commitc856ae17aff5db258eb16713f56fce9f28400d47 (patch)
tree5a02c77626257837c465212e1345c65334c72e37 /vcl/source/filter
parent2d2259c848b43f9f04d5bb6073c00b8ae124534a (diff)
clang-tidy modernize-use-emplace in vcl
Change-Id: Ie0a6d105b0167431275e628935df4f4c1a36d070 Reviewed-on: https://gerrit.libreoffice.org/42259 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/filter')
-rw-r--r--vcl/source/filter/graphicfilter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/filter/graphicfilter.cxx b/vcl/source/filter/graphicfilter.cxx
index 377403057860..f040a6489676 100644
--- a/vcl/source/filter/graphicfilter.cxx
+++ b/vcl/source/filter/graphicfilter.cxx
@@ -1378,7 +1378,7 @@ void GraphicFilter::ImportGraphics(std::vector< std::shared_ptr<Graphic> >& rGra
for (const auto& pStream : rStreams)
{
- aContexts.push_back(GraphicImportContext());
+ aContexts.emplace_back();
GraphicImportContext& rContext = aContexts.back();
if (pStream)