Browse Source

common/math_util: Remove unnecessary static from PI

const/constexpr variables have internal linkage by default.
nce_cpp
Lioncash 7 years ago
parent
commit
60d2e259bb
  1. 2
      src/common/math_util.h

2
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 {

Loading…
Cancel
Save