Remove redundant inline

constexpr implies inline anyway

closes https://github.com/official-stockfish/Stockfish/pull/5406

No functional change
This commit is contained in:
FauziAkram
2024-06-24 17:12:07 +03:00
committed by Joost VandeVondele
parent 5fbfd06171
commit b2a12917e2
+1 -1
View File
@@ -281,7 +281,7 @@ template<size_t N>
struct DebugInfo { struct DebugInfo {
std::atomic<int64_t> data[N] = {0}; std::atomic<int64_t> data[N] = {0};
constexpr inline std::atomic<int64_t>& operator[](int index) { return data[index]; } constexpr std::atomic<int64_t>& operator[](int index) { return data[index]; }
}; };
DebugInfo<2> hit[MaxDebugSlots]; DebugInfo<2> hit[MaxDebugSlots];