From fd1372ba8b1c3eb3c7fad6d9c623176c8071f31b Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 1 Jan 2015 19:58:59 +0000 Subject: boost::unordered_map->std::unordered_map you can get debug stl this way Change-Id: Ia70a3e7c7c452390e8bee34975d296c9318e4a19 --- linguistic/source/convdic.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'linguistic/source/convdic.hxx') diff --git a/linguistic/source/convdic.hxx b/linguistic/source/convdic.hxx index 9831557a4327..73948f20b57a 100644 --- a/linguistic/source/convdic.hxx +++ b/linguistic/source/convdic.hxx @@ -26,9 +26,9 @@ #include #include -#include -#include #include +#include +#include #include "linguistic/misc.hxx" #include "defs.hxx" @@ -57,12 +57,12 @@ struct StrEQ } }; -typedef boost::unordered_multimap< const OUString, OUString, +typedef std::unordered_multimap< const OUString, OUString, const OUStringHash, StrEQ > ConvMap; typedef std::set< OUString, StrLT > ConvMapKeySet; -typedef boost::unordered_multimap< const OUString, sal_Int16, +typedef std::unordered_multimap< const OUString, sal_Int16, OUStringHash, StrEQ > PropTypeMap; -- cgit v1.2.3