summaryrefslogtreecommitdiff
path: root/configmgr/source/partial.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/partial.hxx')
-rw-r--r--configmgr/source/partial.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/configmgr/source/partial.hxx b/configmgr/source/partial.hxx
index a9b10f9eb80b..d9864a6f4841 100644
--- a/configmgr/source/partial.hxx
+++ b/configmgr/source/partial.hxx
@@ -23,7 +23,7 @@
#include <sal/config.h>
#include <set>
-#include <unordered_map>
+#include <boost/unordered_map.hpp>
#include "path.hxx"
#include <rtl/ustring.hxx>
@@ -47,7 +47,7 @@ private:
Partial& operator=(const Partial&) SAL_DELETED_FUNCTION;
struct Node {
- typedef std::unordered_map< OUString, Node, OUStringHash > Children;
+ typedef boost::unordered_map< OUString, Node, OUStringHash > Children;
Node(): startInclude(false) {}
void clear() { startInclude=false; children.clear(); }