diff --git a/src/tt.h b/src/tt.h index 065380ca8ba..26b63c1adb4 100644 --- a/src/tt.h +++ b/src/tt.h @@ -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 };