summaryrefslogtreecommitdiff
path: root/extensions/source/ole/unoobjw.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-01-04 11:10:45 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-01-04 12:51:09 +0000
commitca8787a98171070c771dc167b43d5bdb98c52ce4 (patch)
tree44e476f42d84e50a406698b78f8c72b3afbdebd2 /extensions/source/ole/unoobjw.hxx
parent18861c30a63dd419f3be47896a760109ac06c47a (diff)
boost::unordered_map->std::unordered_map
Change-Id: I5d458f43616edc395faa8c27edaddc7d515166db
Diffstat (limited to 'extensions/source/ole/unoobjw.hxx')
-rw-r--r--extensions/source/ole/unoobjw.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/ole/unoobjw.hxx b/extensions/source/ole/unoobjw.hxx
index 87e27153bd21..f31ef1bc5ff3 100644
--- a/extensions/source/ole/unoobjw.hxx
+++ b/extensions/source/ole/unoobjw.hxx
@@ -76,21 +76,21 @@ struct MemberInfo
OUString name;
};
-typedef boost::unordered_map
+typedef std::unordered_map
<
OUString,
DISPID,
OUStringHash
> NameToIdMap;
-typedef boost::unordered_map
+typedef std::unordered_map
<
OUString,
sal_Bool,
OUStringHash
> BadNameMap;
-typedef boost::unordered_map
+typedef std::unordered_map
<
DISPID,
MemberInfo