From d347c2403605c5aa3ddd98fb605366914acab79f Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 10 Aug 2017 16:43:55 +0200 Subject: convert std::map::insert to std::map::emplace which is considerably less verbose Change-Id: Ifa373e8eb09e39bd6c8d3578641610a6055a187b Reviewed-on: https://gerrit.libreoffice.org/40978 Tested-by: Jenkins Reviewed-by: Noel Grandin --- binaryurp/source/bridge.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'binaryurp/source') diff --git a/binaryurp/source/bridge.cxx b/binaryurp/source/bridge.cxx index 1a05bc26430f..191ca4dc087f 100644 --- a/binaryurp/source/bridge.cxx +++ b/binaryurp/source/bridge.cxx @@ -428,9 +428,9 @@ OUString Bridge::registerOutgoingInterface( //TODO: Release sub-stub if it is not successfully sent to remote side // (otherwise, stub will leak until terminate()): if (j == stub->end()) { - j = stub->insert(Stub::value_type(type, SubStub())).first; + j = stub->emplace(type, SubStub()).first; if (stub == &newStub) { - i = stubs_.insert(Stubs::value_type(oid, Stub())).first; + i = stubs_.emplace(oid, Stub()).first; std::swap(i->second, newStub); j = i->second.find(type); assert(j != i->second.end()); -- cgit