summaryrefslogtreecommitdiffstats
path: root/src/common/math_util.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-11-21 07:57:32 +0100
committerLioncash <mathew1800@gmail.com>2018-11-21 08:08:18 +0100
commitf11173f88cac03eab021d27725805128d046fd0d (patch)
tree5ec7868d11d9a3def3a95a2652a8c073bbfc7ff7 /src/common/math_util.h
parentcommon/math_util: Remove unnecessary static from PI (diff)
downloadyuzu-f11173f88cac03eab021d27725805128d046fd0d.tar
yuzu-f11173f88cac03eab021d27725805128d046fd0d.tar.gz
yuzu-f11173f88cac03eab021d27725805128d046fd0d.tar.bz2
yuzu-f11173f88cac03eab021d27725805128d046fd0d.tar.lz
yuzu-f11173f88cac03eab021d27725805128d046fd0d.tar.xz
yuzu-f11173f88cac03eab021d27725805128d046fd0d.tar.zst
yuzu-f11173f88cac03eab021d27725805128d046fd0d.zip
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 cbcc414be..cf5ad8457 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 {