diff options
author | tymyjan <tymyjan@yahoo.co.uk> | 2016-04-30 16:20:31 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-05-01 10:07:19 +0000 |
commit | 8e4ee4bc68be0fd75636466864b3f6e2716b2748 (patch) | |
tree | 9165a21613be2bc9aa3bd72d00f4087a9b367ffc /stoc/source/invocation_adapterfactory | |
parent | 3962ae32d442b1a33d78a877690930fc45e990b0 (diff) |
tdf#97499 Fixed containers parameters clearing #9
Change-Id: I097106e1887be283320fc518ddafda76608b46ee
Reviewed-on: https://gerrit.libreoffice.org/24521
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'stoc/source/invocation_adapterfactory')
-rw-r--r-- | stoc/source/invocation_adapterfactory/iafactory.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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<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 |