From e3565946b417ae6fe2b554f56501348dbb150817 Mon Sep 17 00:00:00 2001 From: David Capello Date: Wed, 25 Mar 2015 16:41:14 -0300 Subject: [PATCH] Fix compilation of gfx::Rect on gcc 4.8.2 (part of #618) --- src/gfx/rect.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gfx/rect.h b/src/gfx/rect.h index 57cdf0754..4b29a7a13 100644 --- a/src/gfx/rect.h +++ b/src/gfx/rect.h @@ -254,12 +254,12 @@ public: } const RectT& operator|=(const RectT& rc) { - operator=(createUnion(rc)); + RectT::operator=(createUnion(rc)); return *this; } const RectT& operator&=(const RectT& rc) { - operator=(createIntersect(rc)); + RectT::operator=(createIntersect(rc)); return *this; }