summaryrefslogtreecommitdiff
path: root/pyuno
diff options
context:
space:
mode:
authortymyjan <tymyjan@yahoo.co.uk>2016-04-03 15:53:23 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-04-04 05:46:34 +0000
commitbfb9612226314cd037c8eda30cc6ebbb46dc8512 (patch)
tree9cb3d9d1bf9ec134adb0ec9d7e4eae67979f8347 /pyuno
parent362ab03eb276fd7cf73a6882faa4e4f14fcab2a4 (diff)
tdf#97499 Fixed containers parameters clearing #3
Change-Id: I1c105de7e1df251533179fba77e3797ef1c4e2d4 Reviewed-on: https://gerrit.libreoffice.org/23752 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'pyuno')
-rw-r--r--pyuno/source/module/pyuno_impl.hxx11
1 files changed, 4 insertions, 7 deletions
diff --git a/pyuno/source/module/pyuno_impl.hxx b/pyuno/source/module/pyuno_impl.hxx
index 69e254ce0b9a..ca618ed01003 100644
--- a/pyuno/source/module/pyuno_impl.hxx
+++ b/pyuno/source/module/pyuno_impl.hxx
@@ -184,8 +184,7 @@ typedef std::unordered_map
<
PyRef,
css::uno::WeakReference< css::script::XInvocation >,
- PyRef::Hash,
- std::equal_to< PyRef >
+ PyRef::Hash
> PyRef2Adapter;
@@ -193,19 +192,17 @@ typedef std::unordered_map
<
OUString,
PyRef,
-OUStringHash,
-std::equal_to<OUString>
+OUStringHash
> ExceptionClassMap;
typedef std::unordered_map
<
OUString,
css::uno::Sequence< sal_Int16 >,
- OUStringHash,
- std::equal_to< OUString >
+ OUStringHash
> MethodOutIndexMap;
-typedef std::unordered_set< PyRef , PyRef::Hash , std::equal_to<PyRef> > ClassSet;
+typedef std::unordered_set< PyRef , PyRef::Hash > ClassSet;
int PyUNO_initType();
int PyUNOStruct_initType();