Преглед изворни кода

common/math_util: Remove unnecessary static from PI

const/constexpr variables have internal linkage by default.
Lioncash пре 7 година
родитељ
комит
cc0801745a
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/common/math_util.h

+ 1 - 1
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 {