diff options
Diffstat (limited to 'sal/rtl/bootstrap.cxx')
-rw-r--r-- | sal/rtl/bootstrap.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sal/rtl/bootstrap.cxx b/sal/rtl/bootstrap.cxx index a3bbb277a448..bff86919e5bb 100644 --- a/sal/rtl/bootstrap.cxx +++ b/sal/rtl/bootstrap.cxx @@ -677,8 +677,7 @@ rtlBootstrapHandle SAL_CALL rtl_bootstrap_args_open(rtl_uString * pIniName) { ++that->_nRefCount; ::std::pair< bootstrap_map::t::iterator, bool > insertion( - p_bootstrap_map->insert( - bootstrap_map::t::value_type(iniName, that))); + p_bootstrap_map->emplace(iniName, that)); OSL_ASSERT(insertion.second); } else |