diff options
author | Lioncash <mathew1800@gmail.com> | 2018-11-21 01:57:32 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-11-21 02:08:18 -0500 |
commit | f11173f88cac03eab021d27725805128d046fd0d (patch) | |
tree | 5ec7868d11d9a3def3a95a2652a8c073bbfc7ff7 /src/common/math_util.h | |
parent | cc0801745a37c35e98562239b3121dc658366a79 (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.h | 4 |
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 { |