mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-18 07:21:09 +00:00
Fix compilation of gfx::Rect on gcc 4.8.2 (part of #618)
This commit is contained in:
parent
d242458d52
commit
e3565946b4
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user