1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

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