chore: Update pre-commit hooks (#6460)

This commit is contained in:
Ayaz Salikhov
2026-03-03 21:23:22 +01:00
committed by GitHub
parent 0abd762781
commit fcec31ed20
7 changed files with 27 additions and 24 deletions

View File

@@ -133,9 +133,9 @@ STVar::constructST(SerializedTypeID id, int depth, Args&&... args)
{
construct<T>(std::forward<Args>(args)...);
}
else if constexpr (std::is_same_v<
std::tuple<std::remove_cvref_t<Args>...>,
std::tuple<SerialIter, SField>>)
else if constexpr (
std::
is_same_v<std::tuple<std::remove_cvref_t<Args>...>, std::tuple<SerialIter, SField>>)
{
construct<T>(std::forward<Args>(args)..., depth);
}