Merge pull request #13023 from tygyh/Replace-ties-with-structured-bindings

UnitTests: Replace ties with structured bindings
This commit is contained in:
Jordan Woyak
2025-06-07 17:50:34 -05:00
committed by GitHub

View File

@ -553,11 +553,7 @@ INSTANTIATE_TEST_SUITE_P(
TEST_P(VertexLoaderNormalTest, NormalAll)
{
VertexComponentFormat addr;
ComponentFormat format;
NormalComponentCount elements;
bool index3;
std::tie(addr, format, elements, index3) = GetParam();
auto [addr, format, elements, index3] = GetParam();
m_vtx_desc.low.Position = VertexComponentFormat::Direct;
m_vtx_attr.g0.PosFormat = ComponentFormat::Float;