diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-01 08:42:49 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-02-01 10:13:30 +0200 |
commit | 0dfcb858c1e863f6df225ae774bb567f8cfe00c9 (patch) | |
tree | b5085a4d69b110dabd82cb276ce237fb040422eb /bridges/source | |
parent | 0ee9022fda949fe672a111e58ae965531da03694 (diff) |
boost::unordered_map->std::unordered_map in bridges
Change-Id: Idf77d0871f932cf94003013db81c1bb67edbef16
Diffstat (limited to 'bridges/source')
-rw-r--r-- | bridges/source/jni_uno/jni_info.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bridges/source/jni_uno/jni_info.h b/bridges/source/jni_uno/jni_info.h index 962503b1337d..2ff20484545e 100644 --- a/bridges/source/jni_uno/jni_info.h +++ b/bridges/source/jni_uno/jni_info.h @@ -23,7 +23,7 @@ #include <sal/config.h> #include <boost/noncopyable.hpp> -#include <boost/unordered_map.hpp> +#include <unordered_map> #include "jni_base.h" @@ -114,7 +114,7 @@ struct JNI_type_info_holder: private boost::noncopyable {} }; -typedef ::boost::unordered_map< +typedef ::std::unordered_map< OUString, JNI_type_info_holder, OUStringHash > t_str2type; class JNI_info: private boost::noncopyable |