From: Jonathan Wakely Date: Tue, 4 Jul 2023 14:29:35 +0000 (+0100) Subject: libstdc++: Add redundant 'typename' to std::projected X-Git-Tag: basepoints/gcc-15~7835 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49f2b325ec7a49e41fc107239542eae0eb6d364e;p=thirdparty%2Fgcc.git libstdc++: Add redundant 'typename' to std::projected This is needed by Clang 15. libstdc++-v3/ChangeLog: * include/bits/iterator_concepts.h (projected): Add typename. --- diff --git a/libstdc++-v3/include/bits/iterator_concepts.h b/libstdc++-v3/include/bits/iterator_concepts.h index 6802582a459d..e32e94dc9fc0 100644 --- a/libstdc++-v3/include/bits/iterator_concepts.h +++ b/libstdc++-v3/include/bits/iterator_concepts.h @@ -798,7 +798,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION /// [projected], projected template _Proj> - using projected = __detail::__projected<_Iter, _Proj>::__type; + using projected = typename __detail::__projected<_Iter, _Proj>::__type; // [alg.req], common algorithm requirements