summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVasily Melenchuk <vasily.melenchuk@cib.de>2021-04-05 23:38:21 +0300
committerVasily Melenchuk <vasily.melenchuk@cib.de>2021-04-05 23:38:21 +0300
commit52f605c1506bac06a3ac727507c00b79a6063ca4 (patch)
treef0694401202127ef10280461c5c293e7dda2f981
parentcc6d7cabda7a93dc6324b3d74bd601c15ff1758c (diff)
poppler: use o3tl::make_unique instead of std::make_unique
This older varialt is still used on that branch Change-Id: I36331b672fb499218745bdcd00d077e36272f4fe
-rw-r--r--sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx2
1 files changed, 1 insertions, 1 deletions
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