From: Jonathan Wakely
Date: Wed, 4 Nov 2020 12:45:32 +0000 (+0000)
Subject: libstdc++: Document istreambuf_iterator base class change [PR 92285]
X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3ef33e756a65484a17abb95ef0d4133f80c014b1;p=gcc.git
libstdc++: Document istreambuf_iterator base class change [PR 92285]
libstdc++-v3/ChangeLog:
PR libstdc++/92285
* doc/xml/manual/evolution.xml: Document change to base class.
* doc/html/manual/api.html: Regenerate.
---
diff --git a/libstdc++-v3/doc/html/manual/api.html b/libstdc++-v3/doc/html/manual/api.html
index 1849e115936..70889a583f9 100644
--- a/libstdc++-v3/doc/html/manual/api.html
+++ b/libstdc++-v3/doc/html/manual/api.html
@@ -405,6 +405,13 @@ now defaults to zero.
for C++20 mode. The removed functionality has been provided by
std::allocator_traits since C++11 and that should
be used instead.
+
+ The type of the std::iterator base class of
+ std::istreambuf_iterator was changed to be
+ consistent for all -std modes.
+ Before GCC 10.1 the base class had one type in C++98 mode and a
+ different type in C++11 and later modes. The type in C++98 mode
+ was changed to be the same as for C++11 and later.
Experimental C++2a support improved, with new headers
<concepts>,
diff --git a/libstdc++-v3/doc/xml/manual/evolution.xml b/libstdc++-v3/doc/xml/manual/evolution.xml
index 38f11b0300d..55b8903baff 100644
--- a/libstdc++-v3/doc/xml/manual/evolution.xml
+++ b/libstdc++-v3/doc/xml/manual/evolution.xml
@@ -972,6 +972,15 @@ now defaults to zero.
be used instead.
+
+ The type of the std::iterator base class of
+ std::istreambuf_iterator was changed to be
+ consistent for all modes.
+ Before GCC 10.1 the base class had one type in C++98 mode and a
+ different type in C++11 and later modes. The type in C++98 mode
+ was changed to be the same as for C++11 and later.
+
+
Experimental C++2a support improved, with new headers
<concepts>,