summaryrefslogtreecommitdiff
path: root/include/comphelper/numberedcollection.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/comphelper/numberedcollection.hxx')
-rw-r--r--include/comphelper/numberedcollection.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/comphelper/numberedcollection.hxx b/include/comphelper/numberedcollection.hxx
index cd0ba95a44d0..f1d6ccc3d1df 100644
--- a/include/comphelper/numberedcollection.hxx
+++ b/include/comphelper/numberedcollection.hxx
@@ -30,9 +30,9 @@
#include <cppuhelper/basemutex.hxx>
#include <cppuhelper/weakref.hxx>
#include <cppuhelper/implbase1.hxx>
-
+#include <boost/functional/hash.hpp>
+#include <unordered_map>
#include <vector>
-#include <boost/unordered_map.hpp>
namespace comphelper{
@@ -58,7 +58,7 @@ class COMPHELPER_DLLPUBLIC NumberedCollection : private ::cppu::BaseMutex
::sal_Int32 nNumber;
};
- typedef ::boost::unordered_map<
+ typedef std::unordered_map<
long ,
TNumberedItem ,
::boost::hash< long > ,