Added extra comment to test buildbot
authorNghia Ho <nghiaho12@yahoo.com>
Wed, 7 Aug 2013 15:33:21 +0000 (01:33 +1000)
committerNghia Ho <nghiaho12@yahoo.com>
Wed, 7 Aug 2013 15:33:21 +0000 (01:33 +1000)
modules/imgproc/src/intersection.cpp

index 817fc8a..6e409c1 100644 (file)
@@ -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