summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/modifications.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/configmgr/source/modifications.hxx b/configmgr/source/modifications.hxx
index f55e9de2e5e3..ff12651b1620 100644
--- a/configmgr/source/modifications.hxx
+++ b/configmgr/source/modifications.hxx
@@ -22,8 +22,7 @@
#include "sal/config.h"
-#include <map>
-
+#include "boost/unordered_map.hpp"
#include "boost/noncopyable.hpp"
#include "path.hxx"
@@ -34,7 +33,7 @@ namespace configmgr {
class Modifications: private boost::noncopyable {
public:
struct Node {
- typedef std::map< OUString, Node > Children;
+ typedef boost::unordered_map<OUString, Node, OUStringHash> Children;
Children children;
};