summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-12-27 21:01:22 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-12-27 23:00:45 +0000
commit7f476fea47f06a7f8cc961dd4f6595a524346fa5 (patch)
tree52d16713e5a2a5203b041f9ec82742617bd33b1c /sal
parentfc95782eb39cf4974ac4b3096695eeb89008937c (diff)
boost::unordered_map -> c++11 std::unordered_map
Change-Id: I28438000c2b0a8e6ce4f5640f861f572c0cb83c8
Diffstat (limited to 'sal')
-rw-r--r--sal/rtl/bootstrap.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/rtl/bootstrap.cxx b/sal/rtl/bootstrap.cxx
index 01f533132251..775d327e11e6 100644
--- a/sal/rtl/bootstrap.cxx
+++ b/sal/rtl/bootstrap.cxx
@@ -39,8 +39,8 @@
#include <rtl/uri.hxx>
#include <boost/noncopyable.hpp>
-#include <boost/unordered_map.hpp>
#include <list>
+#include <unordered_map>
#ifdef ANDROID
#include <osl/detail/android-bootstrap.h>
@@ -594,7 +594,7 @@ void Bootstrap_Impl::expandValue(
namespace {
struct bootstrap_map: private boost::noncopyable {
- typedef boost::unordered_map<
+ typedef std::unordered_map<
rtl::OUString, Bootstrap_Impl *,
rtl::OUStringHash, std::equal_to< rtl::OUString > > t;