summaryrefslogtreecommitdiff
path: root/scripting/source/provider/ProviderCache.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'scripting/source/provider/ProviderCache.hxx')
-rw-r--r--scripting/source/provider/ProviderCache.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripting/source/provider/ProviderCache.hxx b/scripting/source/provider/ProviderCache.hxx
index c446dfd5a96c..b3658876fd81 100644
--- a/scripting/source/provider/ProviderCache.hxx
+++ b/scripting/source/provider/ProviderCache.hxx
@@ -20,7 +20,6 @@
#ifndef INCLUDED_SCRIPTING_SOURCE_PROVIDER_PROVIDERCACHE_HXX
#define INCLUDED_SCRIPTING_SOURCE_PROVIDER_PROVIDERCACHE_HXX
-#include <boost/unordered_map.hpp>
#include <osl/mutex.hxx>
#include <rtl/ustring.hxx>
#include <cppuhelper/implbase1.hxx>
@@ -33,6 +32,8 @@
#include <com/sun/star/frame/XModel.hpp>
#include <com/sun/star/script/provider/XScriptProvider.hpp>
+#include <unordered_map>
+
namespace func_provider
{
@@ -45,7 +46,7 @@ struct ProviderDetails
css::uno::Reference< css::lang::XSingleComponentFactory > factory;
css::uno::Reference< css::script::provider::XScriptProvider > provider;
};
-typedef ::boost::unordered_map < OUString, ProviderDetails , OUStringHash,
+typedef std::unordered_map < OUString, ProviderDetails , OUStringHash,
::std::equal_to< OUString > > ProviderDetails_hash;