common/math_util: Remove unnecessary static from PI
const/constexpr variables have internal linkage by default.
This commit is contained in:
parent
2787d1230b
commit
bf8f7f0ab6
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
namespace MathUtil {
|
namespace MathUtil {
|
||||||
|
|
||||||
static constexpr float PI = 3.14159265f;
|
constexpr float PI = 3.14159265f;
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
struct Rectangle {
|
struct Rectangle {
|
||||||
|
|
Reference in New Issue