From cc0801745a37c35e98562239b3121dc658366a79 Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Wed, 21 Nov 2018 01:56:14 -0500
Subject: [PATCH] common/math_util: Remove unnecessary static from PI

const/constexpr variables have internal linkage by default.
---
 src/common/math_util.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/common/math_util.h b/src/common/math_util.h
index b553d47ddb..cbcc414be5 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 {