summaryrefslogtreecommitdiff
path: root/sc/source/core/data/column4.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/data/column4.cxx')
-rw-r--r--sc/source/core/data/column4.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/source/core/data/column4.cxx b/sc/source/core/data/column4.cxx
index 379d6e24a389..7448ef02dbab 100644
--- a/sc/source/core/data/column4.cxx
+++ b/sc/source/core/data/column4.cxx
@@ -30,7 +30,6 @@
#include <compiler.hxx>
#include <svl/sharedstringpool.hxx>
-#include <o3tl/make_unique.hxx>
#include <sal/log.hxx>
#include <vector>
@@ -1640,7 +1639,7 @@ std::unique_ptr<sc::ColumnIterator> ScColumn::GetColumnIterator( SCROW nRow1, SC
if (!ValidRow(nRow1) || !ValidRow(nRow2) || nRow1 > nRow2)
return std::unique_ptr<sc::ColumnIterator>();
- return o3tl::make_unique<sc::ColumnIterator>(maCells, nRow1, nRow2);
+ return std::make_unique<sc::ColumnIterator>(maCells, nRow1, nRow2);
}
void ScColumn::EnsureFormulaCellResults( SCROW nRow1, SCROW nRow2 )