From bfb9612226314cd037c8eda30cc6ebbb46dc8512 Mon Sep 17 00:00:00 2001 From: tymyjan Date: Sun, 3 Apr 2016 15:53:23 +0200 Subject: tdf#97499 Fixed containers parameters clearing #3 Change-Id: I1c105de7e1df251533179fba77e3797ef1c4e2d4 Reviewed-on: https://gerrit.libreoffice.org/23752 Tested-by: Jenkins Reviewed-by: Noel Grandin --- svgio/inc/svgio/svgreader/svgdocument.hxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'svgio') diff --git a/svgio/inc/svgio/svgreader/svgdocument.hxx b/svgio/inc/svgio/svgreader/svgdocument.hxx index 46aee7afe8f2..274360ce7524 100644 --- a/svgio/inc/svgio/svgreader/svgdocument.hxx +++ b/svgio/inc/svgio/svgreader/svgdocument.hxx @@ -39,13 +39,12 @@ namespace svgio /// hash mapper to find nodes by their id typedef std::unordered_map< OUString, const SvgNode*, - OUStringHash, - ::std::equal_to< OUString > > IdTokenMapper; + OUStringHash > IdTokenMapper; typedef std::pair< const OUString, const SvgNode* > IdTokenValueType; IdTokenMapper maIdTokenMapperList; /// hash mapper to find css styles by their id - typedef std::unordered_map< OUString, const SvgStyleAttributes*, OUStringHash, ::std::equal_to< OUString > > IdStyleTokenMapper; + typedef std::unordered_map< OUString, const SvgStyleAttributes*, OUStringHash > IdStyleTokenMapper; typedef std::pair< const OUString, const SvgStyleAttributes* > IdStyleTokenValueType; IdStyleTokenMapper maIdStyleTokenMapperList; -- cgit