From: Jonathan Wakely Date: Tue, 5 Nov 2019 15:56:47 +0000 (+0000) Subject: Remove incorrect comment X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6762b658746490a857cac484192c2ef8cc9cadba;p=gcc.git Remove incorrect comment The negative concept is required for subsumption to work, it's not a bug. * include/bits/iterator_concepts.h (__iter_without_nested_types): Remove incorrect comment. From-SVN: r277848 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 400a0d0db76..c83c372d0c0 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2019-11-05 Jonathan Wakely + + * include/bits/iterator_concepts.h (__iter_without_nested_types): + Remove incorrect comment. + 2019-10-31 Jonathan Wakely * doc/html/*: Regenerate. diff --git a/libstdc++-v3/include/bits/iterator_concepts.h b/libstdc++-v3/include/bits/iterator_concepts.h index 323689e63ea..e30645e05cf 100644 --- a/libstdc++-v3/include/bits/iterator_concepts.h +++ b/libstdc++-v3/include/bits/iterator_concepts.h @@ -309,7 +309,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION typename _Iter::reference; }; - // FIXME: needed due to PR c++/92102 template concept __iter_without_nested_types = !__iter_with_nested_types<_Iter>;