Merge pull request #27351 from mshabunin:fix-intrin-legacy-ops-2

core: legacy intrin operators - fixed version warning condition
This commit is contained in:
Alexander Smorkalov 2025-05-23 07:50:39 +03:00 committed by GitHub
commit 5a457842f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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