Silence clang-format issue

No functional change
This commit is contained in:
Disservin
2025-02-02 13:49:54 +01:00
parent dabffbceff
commit 65a9a391e9

View File

@@ -53,6 +53,8 @@ struct TTData {
bool is_pv;
TTData() = delete;
// clang-format off
TTData(Move m, Value v, Value ev, Depth d, Bound b, bool pv) :
move(m),
value(v),
@@ -60,6 +62,7 @@ struct TTData {
depth(d),
bound(b),
is_pv(pv) {};
// clang-format on
};