projects
/
platform
/
upstream
/
opencv.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
964b260
)
imgproc: fix compiler error for gcc 4.8
author
Beat Küng
<beat-kueng@gmx.net>
Sat, 5 Jul 2014 07:27:11 +0000
(09:27 +0200)
committer
Beat Küng
<beat-kueng@gmx.net>
Sat, 5 Jul 2014 07:27:11 +0000
(09:27 +0200)
this bug was introduced in
a73809e6
.
modules/imgproc/src/morph.cpp
patch
|
blob
|
history
diff --git
a/modules/imgproc/src/morph.cpp
b/modules/imgproc/src/morph.cpp
index
a621a6e
..
4f696b4
100644
(file)
--- a/
modules/imgproc/src/morph.cpp
+++ b/
modules/imgproc/src/morph.cpp
@@
-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
}