Explorar o código

common/math_util: Remove unnecessary static from PI

const/constexpr variables have internal linkage by default.
Lioncash %!s(int64=7) %!d(string=hai) anos
pai
achega
cc0801745a
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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 {