From 8795dff9199ed52c226a86c877cc6c9e48b62341 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Fri, 18 Dec 2015 14:42:17 +0100 Subject: sc: replace boost::ptr_map with std::map Change-Id: Iaaf8e5f14691cde32058a78842b9c411f2b92d93 --- sc/inc/dpobject.hxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sc/inc/dpobject.hxx') diff --git a/sc/inc/dpobject.hxx b/sc/inc/dpobject.hxx index c31031bad4fb..646817e350dc 100644 --- a/sc/inc/dpobject.hxx +++ b/sc/inc/dpobject.hxx @@ -33,6 +33,7 @@ #include #include #include +#include #include @@ -267,9 +268,9 @@ public: class SheetCaches { friend class ScDPCollection; - typedef boost::ptr_map CachesType; + typedef std::map> CachesType; typedef std::vector RangeIndexType; - CachesType maCaches; + CachesType m_Caches; RangeIndexType maRanges; ScDocument* mpDoc; public: -- cgit