summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
authorMichael Stahl <Michael.Stahl@cib.de>2019-01-16 10:33:07 +0100
committerMichael Stahl <Michael.Stahl@cib.de>2019-01-16 10:35:10 +0100
commitcf77d8f53b526b2896a02f8e8594f2dc7f560323 (patch)
treeda4c41454aff36df69aff2f02fb13178be1658ee /sdext
parent6382edc2b1d5ae5e6f88a378da0647b890d4c776 (diff)
sdext: fix the build, std::is_same_v is not available yet
Change-Id: I7cf825561e403a8ddc4fbb4e126db03129951b3f Reviewed-on: https://gerrit.libreoffice.org/66429 Reviewed-by: Michael Stahl <Michael.Stahl@cib.de> Tested-by: Michael Stahl <Michael.Stahl@cib.de>
Diffstat (limited to 'sdext')
-rw-r--r--sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx
index cd091e5d270f..3209be3ce2da 100644
--- a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx
+++ b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx
@@ -282,7 +282,7 @@ typedef unsigned char Output_t;
typedef std::vector< Output_t > OutputBuffer;
#if !POPPLER_CHECK_VERSION(0, 73, 0)
-static_assert(std::is_same_v<Guchar, unsigned char>, "unexpected typedef");
+static_assert(std::is_same<Guchar, unsigned char>::value, "unexpected typedef");
#endif
#endif // INCLUDED_SDEXT_SOURCE_PDFIMPORT_XPDFWRAPPER_PDFIOUTDEV_GPL_HXX