summaryrefslogtreecommitdiff
path: root/configmgr
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
parenta36882348973b8af6edd713a9d4e67af72a4bd86 (diff)
incomplete type error under some compilers
Change-Id: I87740d4d035bc4e430d566f4672bfd338511d3a8
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/modifications.hxx4
-rw-r--r--configmgr/source/partial.hxx4
2 files changed, 4 insertions, 4 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;
};
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(); }