summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/inc/pch/precompiled_cppuhelper.hxx1
-rw-r--r--cppuhelper/source/component_context.cxx4
-rw-r--r--cppuhelper/source/interfacecontainer.cxx1
3 files changed, 2 insertions, 4 deletions
diff --git a/cppuhelper/inc/pch/precompiled_cppuhelper.hxx b/cppuhelper/inc/pch/precompiled_cppuhelper.hxx
index fc693797bb64..81686f210d02 100644
--- a/cppuhelper/inc/pch/precompiled_cppuhelper.hxx
+++ b/cppuhelper/inc/pch/precompiled_cppuhelper.hxx
@@ -18,7 +18,6 @@
#include <boost/noncopyable.hpp>
#include <boost/scoped_array.hpp>
#include <boost/shared_ptr.hpp>
-#include <boost/unordered_map.hpp>
#include <cassert>
#include <com/sun/star/beans/NamedValue.hpp>
#include <com/sun/star/beans/Property.hpp>
diff --git a/cppuhelper/source/component_context.cxx b/cppuhelper/source/component_context.cxx
index 53b5eb000468..ece0d64259cb 100644
--- a/cppuhelper/source/component_context.cxx
+++ b/cppuhelper/source/component_context.cxx
@@ -26,7 +26,7 @@
#include <stdio.h>
#endif
-#include <boost/unordered_map.hpp>
+#include <unordered_map>
#ifdef CONTEXT_DIAG
#include <map>
#endif
@@ -347,7 +347,7 @@ protected:
, lateInit( lateInit_ )
{}
};
- typedef ::boost::unordered_map< OUString, ContextEntry * , OUStringHash > t_map;
+ typedef std::unordered_map< OUString, ContextEntry * , OUStringHash > t_map;
t_map m_map;
Reference< lang::XMultiComponentFactory > m_xSMgr;
diff --git a/cppuhelper/source/interfacecontainer.cxx b/cppuhelper/source/interfacecontainer.cxx
index 6c7166003686..da37a8c425b0 100644
--- a/cppuhelper/source/interfacecontainer.cxx
+++ b/cppuhelper/source/interfacecontainer.cxx
@@ -26,7 +26,6 @@
#include <osl/mutex.hxx>
#include <boost/scoped_array.hpp>
-#include <boost/unordered_map.hpp>
#include <com/sun/star/lang/XEventListener.hpp>