From 8e4ee4bc68be0fd75636466864b3f6e2716b2748 Mon Sep 17 00:00:00 2001 From: tymyjan Date: Sat, 30 Apr 2016 16:20:31 +0200 Subject: tdf#97499 Fixed containers parameters clearing #9 Change-Id: I097106e1887be283320fc518ddafda76608b46ee Reviewed-on: https://gerrit.libreoffice.org/24521 Tested-by: Jenkins Reviewed-by: Markus Mohrhard --- stoc/source/invocation_adapterfactory/iafactory.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stoc/source') diff --git a/stoc/source/invocation_adapterfactory/iafactory.cxx b/stoc/source/invocation_adapterfactory/iafactory.cxx index 8c57f651ba3d..d66afabfa870 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(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 -- cgit