From d9ef5bb5a72ff905c951551fcb4c3da3c521b62f Mon Sep 17 00:00:00 2001 From: vbystricky Date: Mon, 21 Apr 2014 15:02:38 +0400 Subject: [PATCH] Fix compile warnings --- modules/imgproc/src/deriv.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/imgproc/src/deriv.cpp b/modules/imgproc/src/deriv.cpp index e338e72d90..f232eb5d9c 100644 --- a/modules/imgproc/src/deriv.cpp +++ b/modules/imgproc/src/deriv.cpp @@ -193,7 +193,8 @@ namespace cv static bool IPPDerivScharr(InputArray _src, OutputArray _dst, int ddepth, int dx, int dy, double scale, double delta, int borderType) { #if defined(HAVE_IPP_ICV_ONLY) - return false; + _src; _dst; ddepth; dx; dy; scale; delta; borderType; + return false; #else if ((0 > dx) || (0 > dy) || (1 != dx + dy)) return false;