summaryrefslogtreecommitdiffstats
path: root/configmgr/source/modifications.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-02-16 13:36:00 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-02-16 13:36:00 +0000
commitb5603894734af2a8d26b69828991cb201b063442 (patch)
tree65305c80395f5a871bf870d273def6fa3b624275 /configmgr/source/modifications.hxx
parentanother dependency still required (diff)
downloadcore-b5603894734af2a8d26b69828991cb201b063442.tar.gz
core-b5603894734af2a8d26b69828991cb201b063442.zip
incomplete type error under some compilers
Change-Id: I87740d4d035bc4e430d566f4672bfd338511d3a8
Diffstat (limited to 'configmgr/source/modifications.hxx')
-rw-r--r--configmgr/source/modifications.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/configmgr/source/modifications.hxx b/configmgr/source/modifications.hxx
index 7fac66758403..71e06ea8f178 100644
--- a/configmgr/source/modifications.hxx
+++ b/configmgr/source/modifications.hxx
@@ -22,7 +22,7 @@
#include <sal/config.h>
-#include <unordered_map>
+#include <boost/unordered_map.hpp>
#include "path.hxx"
@@ -32,7 +32,7 @@ namespace configmgr {
class Modifications {
public:
struct Node {
- typedef std::unordered_map<OUString, Node, OUStringHash> Children;
+ typedef boost::unordered_map<OUString, Node, OUStringHash> Children;
Children children;
};