diff options
author | Lioncash <mathew1800@gmail.com> | 2018-11-21 07:56:14 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-11-21 08:08:18 +0100 |
commit | cc0801745a37c35e98562239b3121dc658366a79 (patch) | |
tree | 5ad7ab46c85b9c3a4a10060f36d7bd71f9dc1abd | |
parent | common/math_util: Remove unused IntervalsIntersect() function (diff) | |
download | yuzu-cc0801745a37c35e98562239b3121dc658366a79.tar yuzu-cc0801745a37c35e98562239b3121dc658366a79.tar.gz yuzu-cc0801745a37c35e98562239b3121dc658366a79.tar.bz2 yuzu-cc0801745a37c35e98562239b3121dc658366a79.tar.lz yuzu-cc0801745a37c35e98562239b3121dc658366a79.tar.xz yuzu-cc0801745a37c35e98562239b3121dc658366a79.tar.zst yuzu-cc0801745a37c35e98562239b3121dc658366a79.zip |
-rw-r--r-- | src/common/math_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/math_util.h b/src/common/math_util.h index b553d47dd..cbcc414be 100644 --- a/src/common/math_util.h +++ b/src/common/math_util.h @@ -9,7 +9,7 @@ namespace MathUtil { -static constexpr float PI = 3.14159265f; +constexpr float PI = 3.14159265f; template <class T> struct Rectangle { |