[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - sdext/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Wed Jan 16 09:35:31 UTC 2019
sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit cf77d8f53b526b2896a02f8e8594f2dc7f560323
Author: Michael Stahl <Michael.Stahl at cib.de>
AuthorDate: Wed Jan 16 10:33:07 2019 +0100
Commit: Michael Stahl <Michael.Stahl at cib.de>
CommitDate: Wed Jan 16 10:35:10 2019 +0100
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 at cib.de>
Tested-by: Michael Stahl <Michael.Stahl at cib.de>
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
More information about the Libreoffice-commits
mailing list