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

Fix _DEBUG/NDEBUG handling across modules (#26151)

This commit is contained in:
shyama7004
2025-02-11 21:56:00 +05:30
parent 1e013a07c4
commit 076bfa6431
5 changed files with 5 additions and 11 deletions
+1 -1
View File
@@ -450,7 +450,7 @@ It does not throw exception, but terminates the application.
//! @endcond
#if defined _DEBUG || defined CV_STATIC_ANALYSIS
#if !defined(NDEBUG) || defined(CV_STATIC_ANALYSIS)
# define CV_DbgAssert(expr) CV_Assert(expr)
#else
/** replaced with CV_Assert(expr) in Debug configuration */