[Libreoffice-commits] core.git: Branch 'feature/cib_contract138c' - sdext/source
Vasily Melenchuk (via logerrit)
logerrit at kemper.freedesktop.org
Mon Apr 5 20:41:30 UTC 2021
sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 52f605c1506bac06a3ac727507c00b79a6063ca4
Author: Vasily Melenchuk <vasily.melenchuk at cib.de>
AuthorDate: Mon Apr 5 23:38:21 2021 +0300
Commit: Vasily Melenchuk <vasily.melenchuk at cib.de>
CommitDate: Mon Apr 5 23:38:21 2021 +0300
poppler: use o3tl::make_unique instead of std::make_unique
This older varialt is still used on that branch
Change-Id: I36331b672fb499218745bdcd00d077e36272f4fe
diff --git a/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx b/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx
index 48f46961f07e..a2d2ce3226ca 100644
--- a/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx
+++ b/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx
@@ -69,7 +69,7 @@ int main(int argc, char **argv)
// read config file
#if POPPLER_CHECK_VERSION(0, 83, 0)
- globalParams = std::make_unique<GlobalParams>();
+ globalParams = o3tl::make_unique<GlobalParams>();
#else
globalParams = new GlobalParams();
#endif
More information about the Libreoffice-commits
mailing list