imgproc: fix compiler error for gcc 4.8

this bug was introduced in a73809e6.
This commit is contained in:
Beat Küng 2014-07-05 09:27:11 +02:00
parent 964b260937
commit 90dce84314

View File

@ -1257,7 +1257,7 @@ static bool IPPMorphReplicate(int op, const Mat &src, Mat &dst, const Mat &kerne
}
#undef IPP_MORPH_CASE
#if defined(__GNUC__) && __GNUC__ == 4 && __GNUC_MINOR__ > 8
#if defined(__GNUC__) && __GNUC__ == 4 && __GNUC_MINOR__ >= 8
return false; /// It disables false positive warning in GCC 4.8 and further
#endif
}