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 --- oox/inc/drawingml/customshapeproperties.hxx | 4 ++-- oox/inc/pch/precompiled_oox.hxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'oox/inc') diff --git a/oox/inc/drawingml/customshapeproperties.hxx b/oox/inc/drawingml/customshapeproperties.hxx index ff80b5265589..d5fbd88a047d 100644 --- a/oox/inc/drawingml/customshapeproperties.hxx +++ b/oox/inc/drawingml/customshapeproperties.hxx @@ -21,7 +21,7 @@ #define INCLUDED_OOX_DRAWINGML_CUSTOMSHAPEPROPERTIES_HXX #include -#include +#include #include #include #include @@ -154,7 +154,7 @@ private: bool mbMirroredY; sal_Int32 mnTextRotateAngle; - typedef boost::unordered_map< sal_Int32, PropertyMap > PresetDataMap; + typedef std::unordered_map< sal_Int32, PropertyMap > PresetDataMap; static PresetDataMap maPresetDataMap; static void initializePresetDataMap(); diff --git a/oox/inc/pch/precompiled_oox.hxx b/oox/inc/pch/precompiled_oox.hxx index d0acc055bb92..6b6d99129ee9 100644 --- a/oox/inc/pch/precompiled_oox.hxx +++ b/oox/inc/pch/precompiled_oox.hxx @@ -34,8 +34,6 @@ #include #include #include -#include -#include #include #include #include @@ -409,6 +407,8 @@ #include #include #include +#include +#include #include #include #include -- cgit