mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 07:09:02 +08:00
21 lines
651 B
Diff
21 lines
651 B
Diff
|
diff --git a/frmts/openjpeg/openjpegdataset.cpp b/frmts/openjpeg/openjpegdataset.cpp
|
||
|
index 5978882bc9..72cc7b9559 100644
|
||
|
--- a/frmts/openjpeg/openjpegdataset.cpp
|
||
|
+++ b/frmts/openjpeg/openjpegdataset.cpp
|
||
|
@@ -34,14 +34,8 @@
|
||
|
#pragma clang diagnostic ignored "-Wdocumentation"
|
||
|
#endif
|
||
|
|
||
|
-#if defined(OPENJPEG_VERSION) && OPENJPEG_VERSION >= 20200
|
||
|
-#include <openjpeg-2.2/openjpeg.h>
|
||
|
-#elif defined(OPENJPEG_VERSION) && OPENJPEG_VERSION >= 20100
|
||
|
-#include <openjpeg-2.1/openjpeg.h>
|
||
|
-#else
|
||
|
#include <stdio.h> /* openjpeg.h needs FILE* */
|
||
|
-#include <openjpeg-2.0/openjpeg.h>
|
||
|
-#endif
|
||
|
+#include <openjpeg.h>
|
||
|
|
||
|
#ifdef __clang__
|
||
|
#pragma clang diagnostic pop
|