From 2ae29b52fdff88c52fef655fa0d245fc514ca35b Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Fri, 21 Mar 2025 05:44:17 -0700 Subject: [PATCH] Add UnpackStructImpl for structs with 22 fields. PiperOrigin-RevId: 739148442 Change-Id: Iae29066daddeea8384f3eb06ff075299156e9579 --- googlemock/include/gmock/gmock-matchers.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/googlemock/include/gmock/gmock-matchers.h b/googlemock/include/gmock/gmock-matchers.h index 41694f54..402dd699 100644 --- a/googlemock/include/gmock/gmock-matchers.h +++ b/googlemock/include/gmock/gmock-matchers.h @@ -3407,6 +3407,14 @@ auto UnpackStructImpl(const T& in, std::make_index_sequence<21>, char) { return std::tie(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u); } + +template +auto UnpackStructImpl(const T& in, std::make_index_sequence<22>, char) { + const auto& [a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, + v] = in; + return std::tie(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, + v); +} #endif // defined(__cpp_structured_bindings) template