mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-07 11:49:40 +00:00
![Steve Wills](/assets/img/avatar_default.png)
- Switch to SF mirror - Add USE_DOS2UNIX PR: ports/171859 Approved by: Iouri Ivliev <ii@any.com.ru> (maintainer)
12 lines
483 B
C++
12 lines
483 B
C++
--- vigra/include/vigra/diff2d.hxx.orig 2008-02-14 23:14:15.000000000 +0000
|
|
+++ vigra/include/vigra/diff2d.hxx 2012-09-24 12:02:46.539117586 +0000
|
|
@@ -1131,7 +1131,7 @@
|
|
bool contains(Rect2D const &r) const
|
|
{
|
|
return r.isEmpty() ||
|
|
- contains(r.upperLeft()) && contains(r.lowerRight()-Diff2D(1,1));
|
|
+ (contains(r.upperLeft()) && contains(r.lowerRight()-Diff2D(1,1)));
|
|
}
|
|
|
|
/** Return whether this rectangle overlaps with the given
|