Skip to content
Snippets Groups Projects
Commit cc080174 authored by Lioncash's avatar Lioncash
Browse files

common/math_util: Remove unnecessary static from PI

const/constexpr variables have internal linkage by default.
parent 74fd0aa2
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
namespace MathUtil { namespace MathUtil {
static constexpr float PI = 3.14159265f; constexpr float PI = 3.14159265f;
template <class T> template <class T>
struct Rectangle { struct Rectangle {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment