summaryrefslogtreecommitdiff
path: root/sc/source/core/data/dpresfilter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/data/dpresfilter.cxx')
-rw-r--r--sc/source/core/data/dpresfilter.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/source/core/data/dpresfilter.cxx b/sc/source/core/data/dpresfilter.cxx
index 5201ad908b82..e1b37f3dfc2d 100644
--- a/sc/source/core/data/dpresfilter.cxx
+++ b/sc/source/core/data/dpresfilter.cxx
@@ -13,7 +13,6 @@
#include <unotools/charclass.hxx>
#include <rtl/math.hxx>
#include <sal/log.hxx>
-#include <o3tl/make_unique.hxx>
#include <com/sun/star/sheet/DataPilotFieldFilter.hpp>
#include <com/sun/star/uno/Sequence.hxx>
@@ -111,7 +110,7 @@ void ScDPResultTree::add(
if (itDim == rDims.end())
{
// New dimension. Insert it.
- auto r = rDims.emplace(aUpperName, o3tl::make_unique<DimensionNode>());
+ auto r = rDims.emplace(aUpperName, std::make_unique<DimensionNode>());
assert(r.second);
itDim = r.first;
}