aboutsummaryrefslogtreecommitdiff
path: root/src/common/math_util.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-11-21 01:57:32 -0500
committerLioncash <mathew1800@gmail.com>2018-11-21 02:08:18 -0500
commitf11173f88cac03eab021d27725805128d046fd0d (patch)
tree5ec7868d11d9a3def3a95a2652a8c073bbfc7ff7 /src/common/math_util.h
parentcc0801745a37c35e98562239b3121dc658366a79 (diff)
common/math_util: Make Rectangle's constructors constexpr
Allows objects that contain rectangle instances to be constexpr constructible as well.
Diffstat (limited to 'src/common/math_util.h')
-rw-r--r--src/common/math_util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/math_util.h b/src/common/math_util.h
index cbcc414be5..cf5ad8457b 100644
--- a/src/common/math_util.h
+++ b/src/common/math_util.h
@@ -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 {