summaryrefslogtreecommitdiffstats
path: root/desktop/source/deployment/misc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-08-11 11:36:47 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-08-11 13:51:29 +0200
commitdb17a874af37350b3270932175854ee674447bc1 (patch)
treefecc983fb75d3a4072cc7bd344fc824d548deb0d /desktop/source/deployment/misc
parentvcl: remove dead TextAttribHyperLink (diff)
downloadcore-db17a874af37350b3270932175854ee674447bc1.tar.gz
core-db17a874af37350b3270932175854ee674447bc1.zip
convert std::map::insert to std::map::emplace II
Change-Id: Ief8bd59c903625ba65b75114b7b52c3b7ecbd331 Reviewed-on: https://gerrit.libreoffice.org/41019 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'desktop/source/deployment/misc')
-rw-r--r--desktop/source/deployment/misc/dp_update.cxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/desktop/source/deployment/misc/dp_update.cxx b/desktop/source/deployment/misc/dp_update.cxx
index a3e0b4062534..9bde54bcad39 100644
--- a/desktop/source/deployment/misc/dp_update.cxx
+++ b/desktop/source/deployment/misc/dp_update.cxx
@@ -359,9 +359,8 @@ UpdateInfoMap getOnlineUpdateInfos(
Reference<deployment::XPackage> extension = getExtensionWithHighestVersion(seqExt);
OSL_ASSERT(extension.is());
- std::pair<UpdateInfoMap::iterator, bool> insertRet = infoMap.insert(
- UpdateInfoMap::value_type(
- dp_misc::getIdentifier(extension), UpdateInfo(extension)));
+ std::pair<UpdateInfoMap::iterator, bool> insertRet = infoMap.emplace(
+ dp_misc::getIdentifier(extension), UpdateInfo(extension));
OSL_ASSERT(insertRet.second);
}
}
@@ -371,9 +370,8 @@ UpdateInfoMap getOnlineUpdateInfos(
for (CIT i = extensionList->begin(); i != extensionList->end(); ++i)
{
OSL_ASSERT(i->is());
- std::pair<UpdateInfoMap::iterator, bool> insertRet = infoMap.insert(
- UpdateInfoMap::value_type(
- dp_misc::getIdentifier(*i), UpdateInfo(*i)));
+ std::pair<UpdateInfoMap::iterator, bool> insertRet = infoMap.emplace(
+ dp_misc::getIdentifier(*i), UpdateInfo(*i));
OSL_ASSERT(insertRet.second);
}
}