summaryrefslogtreecommitdiffstats
path: root/sc/inc/columnspanset.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/columnspanset.hxx')
-rw-r--r--sc/inc/columnspanset.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/inc/columnspanset.hxx b/sc/inc/columnspanset.hxx
index 926f0520e8a1..214bd90db16d 100644
--- a/sc/inc/columnspanset.hxx
+++ b/sc/inc/columnspanset.hxx
@@ -11,7 +11,6 @@
#include "address.hxx"
-#include <optional>
#include <vector>
#include <mdds/flat_segment_tree.hpp>
@@ -60,7 +59,7 @@ private:
ColumnType(SCROW nStart, SCROW nEnd, bool bInit);
};
- typedef std::vector<std::optional<ColumnType>> TableType;
+ typedef std::vector<std::unique_ptr<ColumnType>> TableType;
std::vector<TableType> maTables;