diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-13 09:06:37 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-11-13 10:54:19 +0200 |
commit | f3ba19b37f212a5839a91223f77d501d79e2c4b5 (patch) | |
tree | 781293199c66dc10d433f1cd4ed256857c45c778 /sc/inc/dpcache.hxx | |
parent | c2defd97cb60439fc25970c903e66fbecad148e5 (diff) |
sc: boost::ptr_vector->std::vector<std::unique_ptr>
Change-Id: I7bf6fad1ed2d0f8e9a42293e0ceec7fc3b59963f
Diffstat (limited to 'sc/inc/dpcache.hxx')
-rw-r--r-- | sc/inc/dpcache.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
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<Field> FieldsType; + typedef std::vector< std::unique_ptr<Field> > FieldsType; typedef boost::ptr_vector<GroupItems> GroupFieldsType; FieldsType maFields; |