From: Nghia Ho Date: Wed, 7 Aug 2013 15:33:21 +0000 (+1000) Subject: Added extra comment to test buildbot X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~3740^2~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=95ee02ba8e7d35c578fbce2d4e3d7b19d0b2eca3;p=platform%2Fupstream%2Fopencv.git Added extra comment to test buildbot --- diff --git a/modules/imgproc/src/intersection.cpp b/modules/imgproc/src/intersection.cpp index 817fc8a..6e409c1 100644 --- a/modules/imgproc/src/intersection.cpp +++ b/modules/imgproc/src/intersection.cpp @@ -121,6 +121,7 @@ int rotatedRectangleIntersection( const RotatedRect& rect1, const RotatedRect& r float t2 = (vx1*y21 - vy1*x21) / det; // This takes care of parallel lines + // MSVC does not have std::infinite? #ifdef _WIN32 if( !_finite(t1) || ! _finite(t2) ) #else