From e48e063254caa7eb26b5c3c50fd64236d59ed553 Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Sun, 13 Jan 2019 15:13:32 +0100 Subject: o3tl::make_unique -> std::make_unique in basctl...bridges Since it is now possible to use C++14, it's time to replace the temporary solution with the standard one Change-Id: I9a20a58c68d12656359dcaa060d8ab41f621af32 Reviewed-on: https://gerrit.libreoffice.org/66262 Tested-by: Jenkins Reviewed-by: Noel Grandin --- bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'bridges') diff --git a/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx b/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx index 038f88f1d18e..350e5df4e6a2 100644 --- a/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx +++ b/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx @@ -28,7 +28,6 @@ #include -#include #include #include #include @@ -210,7 +209,7 @@ std::type_info * RTTI::getRTTI(typelib_TypeDescription const & pTypeDescr) default: { m_rttiNames.emplace_back(OString(rttiName)); - auto pad = o3tl::make_unique( + auto pad = std::make_unique( sizeof (__cxxabiv1::__vmi_class_type_info) + ((itd.nBaseTypes - 1) * sizeof ( -- cgit