1
0
mirror of https://github.com/starr-dusT/citra.git synced 2024-10-02 10:26:17 -07:00

common/math_util: Make Rectangle's constructors constexpr

Allows objects that contain rectangle instances to be constexpr
constructible as well.
This commit is contained in:
Lioncash 2018-11-21 01:57:32 -05:00 committed by fearlessTobi
parent bf8f7f0ab6
commit 8d169a4bfa

@ -18,9 +18,9 @@ struct Rectangle {
T right{};
T bottom{};
Rectangle() = default;
constexpr Rectangle() = default;
Rectangle(T left, T top, T right, T bottom)
constexpr Rectangle(T left, T top, T right, T bottom)
: left(left), top(top), right(right), bottom(bottom) {}
T GetWidth() const {