mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 08:37:44 +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:
committed by
Joost VandeVondele
parent
5fbfd06171
commit
b2a12917e2
+1
-1
@@ -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];
|
||||||
|
|||||||
Reference in New Issue
Block a user