From e6fb6c290ca519e5c4e10b568475d30189f9b07b Mon Sep 17 00:00:00 2001 From: Maksim Shabunin Date: Thu, 22 May 2025 21:00:49 +0300 Subject: [PATCH] core: legacy intrin operators - fixed version warning condition --- modules/core/include/opencv2/core/hal/intrin_legacy_ops.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/core/include/opencv2/core/hal/intrin_legacy_ops.h b/modules/core/include/opencv2/core/hal/intrin_legacy_ops.h index 569995191d..764c245df9 100644 --- a/modules/core/include/opencv2/core/hal/intrin_legacy_ops.h +++ b/modules/core/include/opencv2/core/hal/intrin_legacy_ops.h @@ -17,8 +17,8 @@ #warning "Operators might conflict with built-in functions on RISC-V platform" #endif -#if defined(CV_VERSION) && CV_VERSION_MAJOR == 4 && CV_VERSION_MINOR < 11 -#warning "Older versions of OpenCV (<4.11) already have Universal Intrinscs operators" +#if defined(CV_VERSION) && CV_VERSION_MAJOR == 4 && CV_VERSION_MINOR < 9 +#warning "Older versions of OpenCV (<4.9) already have Universal Intrinscs operators" #endif