Common/Rectangle: Compile fix when using operator=

This commit is contained in:
Connor McLaughlin 2020-02-07 00:10:46 +09:00
parent 7e862cd63e
commit d1c8775996
1 changed files with 1 additions and 0 deletions

View File

@ -70,6 +70,7 @@ struct Rectangle
top = rhs.top;
left = rhs.left;
bottom = rhs.bottom;
return *this;
}
// Relational operators.