diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-02-16 13:36:00 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-02-16 13:36:00 +0000 |
commit | b5603894734af2a8d26b69828991cb201b063442 (patch) | |
tree | 65305c80395f5a871bf870d273def6fa3b624275 /configmgr/source/modifications.hxx | |
parent | a36882348973b8af6edd713a9d4e67af72a4bd86 (diff) |
incomplete type error under some compilers
Change-Id: I87740d4d035bc4e430d566f4672bfd338511d3a8
Diffstat (limited to 'configmgr/source/modifications.hxx')
-rw-r--r-- | configmgr/source/modifications.hxx | 4 |
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; }; |