Browse Source

common/math_util: Remove unnecessary static from PI

const/constexpr variables have internal linkage by default.
Lioncash 7 năm trước cách đây
mục cha
commit
cc0801745a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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 {