diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-06-07 17:50:34 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-07 17:50:34 -0500 |
| commit | ec52a7496723f9b59c37003ac0296e6a2f7e911c (patch) | |
| tree | 0b1d818cf275e9e061b122579504060cc9a1f805 /Source/UnitTests/VideoCommon/VertexLoaderTest.cpp | |
| parent | 8b7669550f2e5eca5fef3b8ffe686cdc2b653216 (diff) | |
| parent | 096ab8c0263565a26c285dc0488611bb5e9e59a9 (diff) | |
Merge pull request #13023 from tygyh/Replace-ties-with-structured-bindings
UnitTests: Replace ties with structured bindings
Diffstat (limited to 'Source/UnitTests/VideoCommon/VertexLoaderTest.cpp')
| -rw-r--r-- | Source/UnitTests/VideoCommon/VertexLoaderTest.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp b/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp index ff33dbd106..936f2e35c1 100644 --- a/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp +++ b/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp @@ -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; |
