From: Jonathan Wakely Date: Tue, 21 Oct 2025 23:48:23 +0000 (+0100) Subject: libstdc++: Add typedefs to __gnu_test::test_container utility X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93b8d6e4d2a18d624a853b44d23b271ee500c777;p=thirdparty%2Fgcc.git libstdc++: Add typedefs to __gnu_test::test_container utility libstdc++-v3/ChangeLog: * testsuite/util/testsuite_iterators.h (test_container): Add iterator and value_type typedefs. Reviewed-by: Tomasz KamiƄski --- 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