Fix compilation of gfx::Rect on gcc 4.8.2 (part of #618)

This commit is contained in:
David Capello 2015-03-25 16:41:14 -03:00
parent d242458d52
commit e3565946b4

View File

@ -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;
}