Commit d9ef5bb5 authored by vbystricky's avatar vbystricky

Fix compile warnings

parent f5212672
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment