From 84aed5d360b3ba7d63e3c18440511a9157b3265d Mon Sep 17 00:00:00 2001 From: Vadim Pisarevsky Date: Sat, 4 Dec 2010 11:40:14 +0000 Subject: [PATCH] fixed unresolved RotatedRect::boundingRect() error (ticket #725) --- modules/core/src/matrix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/src/matrix.cpp b/modules/core/src/matrix.cpp index a3e8822bd8..b7b475b189 100644 --- a/modules/core/src/matrix.cpp +++ b/modules/core/src/matrix.cpp @@ -3062,7 +3062,7 @@ void RotatedRect::points(Point2f pt[]) const pt[3].y = 2*center.y - pt[1].y; } -inline Rect RotatedRect::boundingRect() const +Rect RotatedRect::boundingRect() const { Point2f pt[4]; points(pt);