math_util: Always initialize members of Rectangle
Prevents potentially using the members uninitialized.
This commit is contained in:
parent
5e658efdb8
commit
23e8dd66c4
|
@ -19,10 +19,10 @@ 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() = default;
|
Rectangle() = default;
|
||||||
|
|
||||||
|
|
Reference in New Issue