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 --- l10ntools/inc/cfgmerge.hxx | 5 ++--- l10ntools/inc/export.hxx | 8 ++++---- l10ntools/inc/xmlparse.hxx | 8 ++++---- l10ntools/source/helpmerge.cxx | 1 + 4 files changed, 11 insertions(+), 11 deletions(-) (limited to 'l10ntools') diff --git a/l10ntools/inc/cfgmerge.hxx b/l10ntools/inc/cfgmerge.hxx index 1eb5f55a2e58..868b01dd0983 100644 --- a/l10ntools/inc/cfgmerge.hxx +++ b/l10ntools/inc/cfgmerge.hxx @@ -23,12 +23,11 @@ #include "sal/config.h" #include +#include #include - -#include "boost/unordered_map.hpp" #include "po.hxx" -typedef boost::unordered_map OStringHashMap; +typedef std::unordered_map OStringHashMap; diff --git a/l10ntools/inc/export.hxx b/l10ntools/inc/export.hxx index 20102930c93c..f625b30a1ac8 100644 --- a/l10ntools/inc/export.hxx +++ b/l10ntools/inc/export.hxx @@ -29,9 +29,9 @@ #include #include -#include #include #include +#include #include #include #include @@ -46,10 +46,10 @@ class MergeEntrys; -typedef boost::unordered_map +typedef std::unordered_map OStringHashMap; -typedef boost::unordered_map +typedef std::unordered_map OStringBoolHashMap; #define SOURCE_LANGUAGE "en-US" @@ -247,7 +247,7 @@ class MergeData; class MergeDataHashMap { private: - typedef boost::unordered_map HashMap_t; + typedef std::unordered_map HashMap_t; public: MergeDataHashMap():bFirstSearch(true){}; diff --git a/l10ntools/inc/xmlparse.hxx b/l10ntools/inc/xmlparse.hxx index bca92c1c726e..474bee685f95 100644 --- a/l10ntools/inc/xmlparse.hxx +++ b/l10ntools/inc/xmlparse.hxx @@ -32,8 +32,8 @@ #include #include -#include "boost/unordered_map.hpp" #include "export.hxx" +#include class XMLParentNode; class XMLElement; @@ -135,13 +135,13 @@ public: }; /// Mapping numeric Language code <-> XML Element -typedef boost::unordered_map LangHashMap; +typedef std::unordered_map LangHashMap; /// Mapping XML Element string identifier <-> Language Map -typedef boost::unordered_map XMLHashMap; +typedef std::unordered_map XMLHashMap; /// Mapping XML tag names <-> have localizable strings -typedef boost::unordered_map TagMap; +typedef std::unordered_map TagMap; /** Holds information of a XML file, is root node of tree */ diff --git a/l10ntools/source/helpmerge.cxx b/l10ntools/source/helpmerge.cxx index 7411c55b89da..dd31a3a04d52 100644 --- a/l10ntools/source/helpmerge.cxx +++ b/l10ntools/source/helpmerge.cxx @@ -21,6 +21,7 @@ #include #include +#include #include #include -- cgit