소스 검색

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 {