[Libreoffice-commits] core.git: stoc/source
tymyjan
tymyjan at yahoo.co.uk
Sun May 1 10:07:45 UTC 2016
stoc/source/invocation_adapterfactory/iafactory.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 8e4ee4bc68be0fd75636466864b3f6e2716b2748
Author: tymyjan <tymyjan at yahoo.co.uk>
Date: Sat Apr 30 16:20:31 2016 +0200
tdf#97499 Fixed containers parameters clearing #9
Change-Id: I097106e1887be283320fc518ddafda76608b46ee
Reviewed-on: https://gerrit.libreoffice.org/24521
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
diff --git a/stoc/source/invocation_adapterfactory/iafactory.cxx b/stoc/source/invocation_adapterfactory/iafactory.cxx
index 8c57f65..d66afab 100644
--- a/stoc/source/invocation_adapterfactory/iafactory.cxx
+++ b/stoc/source/invocation_adapterfactory/iafactory.cxx
@@ -75,8 +75,8 @@ struct hash_ptr
inline size_t operator() ( void * p ) const
{ return reinterpret_cast<size_t>(p); }
};
-typedef std::unordered_set< void *, hash_ptr, equal_to< void * > > t_ptr_set;
-typedef std::unordered_map< void *, t_ptr_set, hash_ptr, equal_to< void * > > t_ptr_map;
+typedef std::unordered_set< void *, hash_ptr > t_ptr_set;
+typedef std::unordered_map< void *, t_ptr_set, hash_ptr > t_ptr_map;
class FactoryImpl
More information about the Libreoffice-commits
mailing list