From 93b8d6e4d2a18d624a853b44d23b271ee500c777 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Wed, 22 Oct 2025 00:48:23 +0100 Subject: [PATCH] libstdc++: Add typedefs to __gnu_test::test_container utility MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit libstdc++-v3/ChangeLog: * testsuite/util/testsuite_iterators.h (test_container): Add iterator and value_type typedefs. Reviewed-by: Tomasz Kamiński --- libstdc++-v3/testsuite/util/testsuite_iterators.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libstdc++-v3/testsuite/util/testsuite_iterators.h b/libstdc++-v3/testsuite/util/testsuite_iterators.h index 5bf2e704e84..41fbcaad366 100644 --- a/libstdc++-v3/testsuite/util/testsuite_iterators.h +++ b/libstdc++-v3/testsuite/util/testsuite_iterators.h @@ -674,6 +674,9 @@ namespace __gnu_test template class ItType> struct test_container { + typedef ItType iterator; + typedef typename iterator::value_type value_type; + typename ItType::ContainerType bounds; _GLIBCXX_CONSTEXPR -- 2.47.3