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

Utilize CV_UNUSED macro

This commit is contained in:
Hamdi Sahloul
2018-09-07 20:33:52 +09:00
parent f3fae0dae0
commit a39e0daacf
98 changed files with 468 additions and 468 deletions
+2 -2
View File
@@ -2215,7 +2215,7 @@ void setUseIPP(bool flag)
#ifdef HAVE_IPP
data->useIPP = (getIPPSingleton().useIPP)?flag:false;
#else
(void)flag;
CV_UNUSED(flag);
data->useIPP = false;
#endif
}
@@ -2240,7 +2240,7 @@ void setUseIPP_NE(bool flag)
#ifdef HAVE_IPP
data->useIPP_NE = (getIPPSingleton().useIPP_NE)?flag:false;
#else
(void)flag;
CV_UNUSED(flag);
data->useIPP_NE = false;
#endif
}