From 8d1ef536be03202abedcf245d39b18ea8bfa207c Mon Sep 17 00:00:00 2001 From: Laurent Montel Date: Fri, 15 Dec 2023 21:57:45 +0100 Subject: [PATCH] Code is qt6 only now. Remove unused check --- src/imageformats/exr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imageformats/exr.cpp b/src/imageformats/exr.cpp index 042bbe7..3c0bf1a 100644 --- a/src/imageformats/exr.cpp +++ b/src/imageformats/exr.cpp @@ -94,7 +94,7 @@ // Allow the code to works on all QT versions supported by KDE // project (Qt 5.15 and Qt 6.x) to easy backports fixes. -#if (QT_VERSION_MAJOR >= 6) && !defined(EXR_USE_LEGACY_CONVERSIONS) +#if !defined(EXR_USE_LEGACY_CONVERSIONS) // If uncommented, the image is rendered in a float16 format, the result is very precise #define EXR_USE_QT6_FLOAT_IMAGE // default uncommented #endif