diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-01-04 11:10:45 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-04 12:51:09 +0000 |
commit | ca8787a98171070c771dc167b43d5bdb98c52ce4 (patch) | |
tree | 44e476f42d84e50a406698b78f8c72b3afbdebd2 /stoc/source/inspect | |
parent | 18861c30a63dd419f3be47896a760109ac06c47a (diff) |
boost::unordered_map->std::unordered_map
Change-Id: I5d458f43616edc395faa8c27edaddc7d515166db
Diffstat (limited to 'stoc/source/inspect')
-rw-r--r-- | stoc/source/inspect/introspection.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stoc/source/inspect/introspection.cxx b/stoc/source/inspect/introspection.cxx index bd7619768228..9869b4c6bd05 100644 --- a/stoc/source/inspect/introspection.cxx +++ b/stoc/source/inspect/introspection.cxx @@ -65,7 +65,7 @@ #include <rtl/ref.hxx> #include <rtl/ustrbuf.hxx> #include <rtl/strbuf.hxx> -#include <boost/unordered_map.hpp> +#include <unordered_map> using namespace css::uno; using namespace css::lang; @@ -136,7 +136,7 @@ bool isDerivedFrom( Reference<XIdlClass> xToTestClass, Reference<XIdlClass> xDer // part of the new Instance-related ImplIntrospectionAccess // Hashtable for the search of names -typedef boost::unordered_map +typedef std::unordered_map < OUString, sal_Int32, @@ -147,7 +147,7 @@ IntrospectionNameMap; // Hashtable to assign exact names to the Lower-Case // converted names, for the support of XExactName -typedef boost::unordered_map +typedef std::unordered_map < OUString, OUString, |