math_util: Always initialize members of Rectangle

Prevents potentially using the members uninitialized.
This commit is contained in:
Lioncash 2018-08-02 10:47:31 -04:00
parent a03c644aed
commit f2a03468b1

View File

@ -19,12 +19,12 @@ inline bool IntervalsIntersect(unsigned start0, unsigned length0, unsigned start
template <class T> template <class T>
struct Rectangle { struct Rectangle {
T left; T left{};
T top; T top{};
T right; T right{};
T bottom; T bottom{};
Rectangle() {} Rectangle() = default;
Rectangle(T left, T top, T right, T bottom) Rectangle(T left, T top, T right, T bottom)
: left(left), top(top), right(right), bottom(bottom) {} : left(left), top(top), right(right), bottom(bottom) {}