From 0be5d2b2f6366b295a47a3b9d4e87091b6fd446b Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sat, 3 Jan 2015 21:24:08 +0000 Subject: boost::unordered_map->std::unordered_map Change-Id: I82f668ef72e916d2ff11df5cda2a02653999f66f --- i18nlangtag/source/languagetag/languagetag.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'i18nlangtag') diff --git a/i18nlangtag/source/languagetag/languagetag.cxx b/i18nlangtag/source/languagetag/languagetag.cxx index 54d8bf67c3aa..96c53c639a45 100644 --- a/i18nlangtag/source/languagetag/languagetag.cxx +++ b/i18nlangtag/source/languagetag/languagetag.cxx @@ -18,8 +18,8 @@ #include #include #include -#include #include +#include //#define erDEBUG @@ -52,7 +52,7 @@ struct theEmptyLocale : public rtl::Static< lang::Locale, theEmptyLocale > {}; struct theEmptyBcp47 : public rtl::Static< OUString, theEmptyBcp47 > {}; } -typedef ::boost::unordered_set< OUString, OUStringHash > KnownTagSet; +typedef std::unordered_set< OUString, OUStringHash > KnownTagSet; namespace { struct theKnowns : public rtl::Static< KnownTagSet, theKnowns > {}; struct theMutex : public rtl::Static< osl::Mutex, theMutex > {}; -- cgit v1.2.3