Skip to content
Snippets Groups Projects
Unverified Commit ef943341 authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #900 from lioncash/init

math_util: Always initialize members of Rectangle
parents 00ba704a f2a03468
No related branches found
No related tags found
No related merge requests found
...@@ -19,12 +19,12 @@ inline bool IntervalsIntersect(unsigned start0, unsigned length0, unsigned start ...@@ -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) {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment