summaryrefslogtreecommitdiff
path: root/pyuno/source
diff options
context:
space:
mode:
Diffstat (limited to 'pyuno/source')
-rw-r--r--pyuno/source/module/pyuno_impl.hxx8
-rw-r--r--pyuno/source/module/pyuno_module.cxx2
2 files changed, 4 insertions, 6 deletions
diff --git a/pyuno/source/module/pyuno_impl.hxx b/pyuno/source/module/pyuno_impl.hxx
index d3f7a6a5c628..ea0e419ffb1b 100644
--- a/pyuno/source/module/pyuno_impl.hxx
+++ b/pyuno/source/module/pyuno_impl.hxx
@@ -190,16 +190,14 @@ typedef std::unordered_map
typedef std::unordered_map
<
-OUString,
-PyRef,
-OUStringHash
+ OUString,
+ PyRef
> ExceptionClassMap;
typedef std::unordered_map
<
OUString,
- css::uno::Sequence< sal_Int16 >,
- OUStringHash
+ css::uno::Sequence< sal_Int16 >
> MethodOutIndexMap;
typedef std::unordered_set< PyRef , PyRef::Hash > ClassSet;
diff --git a/pyuno/source/module/pyuno_module.cxx b/pyuno/source/module/pyuno_module.cxx
index ffc369387c56..8c738aedbecc 100644
--- a/pyuno/source/module/pyuno_module.cxx
+++ b/pyuno/source/module/pyuno_module.cxx
@@ -81,7 +81,7 @@ class fillStructState
// Keyword arguments used
PyObject *used;
// Which structure members are initialised
- std::unordered_map <OUString, bool, OUStringHash> initialised;
+ std::unordered_map <OUString, bool> initialised;
// How many positional arguments are consumed
// This is always the so-many first ones
sal_Int32 nPosConsumed;