2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

common/math_util: Remove unnecessary static from PI

const/constexpr variables have internal linkage by default.
This commit is contained in:
Lioncash 2018-11-21 01:56:14 -05:00
parent 74fd0aa2e8
commit cc0801745a

View file

@ -9,7 +9,7 @@
namespace MathUtil {
static constexpr float PI = 3.14159265f;
constexpr float PI = 3.14159265f;
template <class T>
struct Rectangle {