From f3ba19b37f212a5839a91223f77d501d79e2c4b5 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 13 Nov 2015 09:06:37 +0200 Subject: sc: boost::ptr_vector->std::vector Change-Id: I7bf6fad1ed2d0f8e9a42293e0ceec7fc3b59963f --- sc/inc/dpcache.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sc/inc') diff --git a/sc/inc/dpcache.hxx b/sc/inc/dpcache.hxx index 155c969363b0..7226be9fd6cd 100644 --- a/sc/inc/dpcache.hxx +++ b/sc/inc/dpcache.hxx @@ -110,7 +110,7 @@ private: */ mutable ScDPObjectSet maRefObjects; - typedef boost::ptr_vector FieldsType; + typedef std::vector< std::unique_ptr > FieldsType; typedef boost::ptr_vector GroupFieldsType; FieldsType maFields; -- cgit