summaryrefslogtreecommitdiff
path: root/unotools/source/config/pathoptions.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unotools/source/config/pathoptions.cxx')
-rw-r--r--unotools/source/config/pathoptions.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/unotools/source/config/pathoptions.cxx b/unotools/source/config/pathoptions.cxx
index 42a2caa5c82b..4473397b2ea9 100644
--- a/unotools/source/config/pathoptions.cxx
+++ b/unotools/source/config/pathoptions.cxx
@@ -44,8 +44,8 @@
#include "itemholder1.hxx"
+#include <unordered_map>
#include <vector>
-#include <boost/unordered_map.hpp>
using namespace osl;
using namespace utl;
@@ -72,11 +72,11 @@ enum VarNameProperty
VAR_NEEDS_FILEURL
};
-typedef boost::unordered_map<OUString, sal_Int32, OUStringHash> NameToHandleMap;
+typedef std::unordered_map<OUString, sal_Int32, OUStringHash> NameToHandleMap;
-typedef boost::unordered_map<sal_Int32, sal_Int32> EnumToHandleMap;
+typedef std::unordered_map<sal_Int32, sal_Int32> EnumToHandleMap;
-typedef boost::unordered_map<OUString, VarNameProperty, OUStringHash>
+typedef std::unordered_map<OUString, VarNameProperty, OUStringHash>
VarNameToEnumMap;
// class SvtPathOptions_Impl ---------------------------------------------