summaryrefslogtreecommitdiffstats
path: root/idl
diff options
context:
space:
mode:
Diffstat (limited to 'idl')
-rw-r--r--idl/source/cmptools/hash.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/idl/source/cmptools/hash.cxx b/idl/source/cmptools/hash.cxx
index 22899d6e5c64..ef11b489e5ae 100644
--- a/idl/source/cmptools/hash.cxx
+++ b/idl/source/cmptools/hash.cxx
@@ -25,7 +25,6 @@
#include <hash.hxx>
#include <rtl/character.hxx>
-#include <o3tl/make_unique.hxx>
SvStringHashEntry * SvStringHashTable::Insert( const OString& rElement, sal_uInt32 * pInsertPos )
{
@@ -35,7 +34,7 @@ SvStringHashEntry * SvStringHashTable::Insert( const OString& rElement, sal_uInt
return maInt2EntryMap[*pInsertPos].get();
}
maString2IntMap[rElement] = mnNextId;
- maInt2EntryMap[mnNextId] = o3tl::make_unique<SvStringHashEntry>(rElement);
+ maInt2EntryMap[mnNextId] = std::make_unique<SvStringHashEntry>(rElement);
*pInsertPos = mnNextId;
mnNextId++;
return maInt2EntryMap[*pInsertPos].get();