Explorar el Código

common/math_util: Remove unnecessary static from PI

const/constexpr variables have internal linkage by default.
Lioncash hace 7 años
padre
commit
cc0801745a
Se han modificado 1 ficheros con 1 adiciones y 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 {