mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 00:33:09 +00:00
Remove redundant inline
constexpr implies inline anyway closes https://github.com/official-stockfish/Stockfish/pull/5406 No functional change
This commit is contained in:
parent
5fbfd06171
commit
b2a12917e2
1 changed files with 1 additions and 1 deletions
|
@ -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];
|
||||||
|
|
Loading…
Add table
Reference in a new issue