From b50a8289b97fe532da961141889fc69fabd7f6fd Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Tue, 17 Feb 2015 16:25:41 +1100 Subject: [PATCH] region: space --- region.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/region.cpp b/region.cpp index 893786ff..50a43b2d 100644 --- a/region.cpp +++ b/region.cpp @@ -93,7 +93,7 @@ util::region::scale (T factor) //----------------------------------------------------------------------------- template -bool +bool util::region::empty (void) const { return almost_zero (area ()); @@ -224,7 +224,6 @@ util::region::intersection (const util::region &rhs) const size_type nw = sign_cast (newx2 - newx1); size_type nh = sign_cast (newy2 - newy1); return util::region (newx1, newy1, nw, nh); - }