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 --- sax/source/fastparser/fastparser.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sax/source/fastparser') diff --git a/sax/source/fastparser/fastparser.cxx b/sax/source/fastparser/fastparser.cxx index bf2533258d91..d586e3520d78 100644 --- a/sax/source/fastparser/fastparser.cxx +++ b/sax/source/fastparser/fastparser.cxx @@ -38,8 +38,8 @@ #include #include #include -#include #include +#include #include #include #include @@ -68,7 +68,7 @@ struct Entity; typedef ::boost::shared_ptr< NamespaceDefine > NamespaceDefineRef; -typedef ::boost::unordered_map< OUString, sal_Int32, +typedef std::unordered_map< OUString, sal_Int32, OUStringHash, ::std::equal_to< OUString > > NamespaceMap; typedef std::vector EventList; -- cgit