common/math_util: Remove unnecessary static from PI
const/constexpr variables have internal linkage by default.
This commit is contained in:
parent
74fd0aa2e8
commit
cc0801745a
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
|||
|
||||
namespace MathUtil {
|
||||
|
||||
static constexpr float PI = 3.14159265f;
|
||||
constexpr float PI = 3.14159265f;
|
||||
|
||||
template <class T>
|
||||
struct Rectangle {
|
||||
|
|
Loading…
Reference in a new issue