summaryrefslogtreecommitdiff
path: root/package/inc/HashMaps.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'package/inc/HashMaps.hxx')
-rw-r--r--package/inc/HashMaps.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/package/inc/HashMaps.hxx b/package/inc/HashMaps.hxx
index 55b1c183ecd9..a8855090fc47 100644
--- a/package/inc/HashMaps.hxx
+++ b/package/inc/HashMaps.hxx
@@ -21,7 +21,7 @@
#include <ZipEntry.hxx>
#include <rtl/ref.hxx>
-#include <boost/unordered_map.hpp>
+#include <unordered_map>
struct eqFunc
{
@@ -37,17 +37,17 @@ namespace com { namespace sun { namespace star { namespace packages {
class ContentInfo;
} } } }
-typedef boost::unordered_map < OUString,
+typedef std::unordered_map < OUString,
ZipPackageFolder *,
OUStringHash,
eqFunc > FolderHash;
-typedef boost::unordered_map < OUString,
+typedef std::unordered_map < OUString,
rtl::Reference < com::sun::star::packages::ContentInfo >,
OUStringHash,
eqFunc > ContentHash;
-typedef boost::unordered_map < OUString,
+typedef std::unordered_map < OUString,
ZipEntry,
OUStringHash,
eqFunc > EntryHash;