sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit cf77d8f53b526b2896a02f8e8594f2dc7f560323
Author:     Michael Stahl <michael.st...@cib.de>
AuthorDate: Wed Jan 16 10:33:07 2019 +0100
Commit:     Michael Stahl <michael.st...@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.st...@cib.de>
    Tested-by: Michael Stahl <michael.st...@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
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to