summaryrefslogtreecommitdiff
path: root/src/common/math_util.h
diff options
context:
space:
mode:
authorGravatar Lioncash2018-11-21 01:56:14 -0500
committerGravatar Lioncash2018-11-21 02:08:18 -0500
commitcc0801745a37c35e98562239b3121dc658366a79 (patch)
tree5ad7ab46c85b9c3a4a10060f36d7bd71f9dc1abd /src/common/math_util.h
parentcommon/math_util: Remove unused IntervalsIntersect() function (diff)
downloadyuzu-cc0801745a37c35e98562239b3121dc658366a79.tar.gz
yuzu-cc0801745a37c35e98562239b3121dc658366a79.tar.xz
yuzu-cc0801745a37c35e98562239b3121dc658366a79.zip
common/math_util: Remove unnecessary static from PI
const/constexpr variables have internal linkage by default.
Diffstat (limited to 'src/common/math_util.h')
-rw-r--r--src/common/math_util.h2
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 @@
9 9
10namespace MathUtil { 10namespace MathUtil {
11 11
12static constexpr float PI = 3.14159265f; 12constexpr float PI = 3.14159265f;
13 13
14template <class T> 14template <class T>
15struct Rectangle { 15struct Rectangle {