===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.4/changes.html,v
retrieving revision 1.88
@@ -377,9 +377,8 @@
<h4>Runtime Library (libstdc++)</h4>
<ul>
- <li><a href="https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#id476343">
- Improved experimental support for the upcoming ISO C++ standard,
- C++0x</a>, including:
+ <li>Improved experimental support for the upcoming ISO C++ standard,
+ C++0x, including:
<ul>
<li>Support for <chrono>, <condition_variable>,
<cstdatomic>, <forward_list>, <initializer_list>,
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.5/changes.html,v
retrieving revision 1.112
@@ -373,14 +373,14 @@
<h4>Runtime Library (libstdc++)</h4>
<ul>
- <li><a href="https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#status.iso.200x">
- Improved experimental support for the upcoming ISO C++ standard,
- C++0x</a>, including:
+ <li>Improved experimental support for the upcoming ISO C++ standard,
+ C++0x, including:
<ul>
<li>Support for <future>, <functional>,
and <random>.</li>
<li>Existing facilities now exploit explicit operators and the
newly implemented core C++0x features.</li>
+ <li>The header <cstdatomic> has been renamed to <atomic>.</li>
</ul>
</li>
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.6/changes.html,v
retrieving revision 1.151
@@ -460,7 +460,7 @@
<h4>Runtime Library (libstdc++)</h4>
<ul>
- <li><a href="https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#status.iso.200x">
+ <li><a href="https://gcc.gnu.org/onlinedocs/gcc-4.6.4/libstdc++/manual/manual/status.html#status.iso.200x">
Improved experimental support for the upcoming ISO C++ standard,
C++0x</a>, including using <code>constexpr</code> and
<code>nullptr</code>. </li>
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.7/changes.html,v
retrieving revision 1.139
@@ -560,7 +560,7 @@
<h4>Runtime Library (libstdc++)</h4>
<ul>
- <li><a href="https://gcc.gnu.org/onlinedocs/gcc-4.7.1/libstdc++/manual/manual/status.html#status.iso.2011">
+ <li><a href="https://gcc.gnu.org/onlinedocs/gcc-4.7.4/libstdc++/manual/manual/status.html#status.iso.2011">
Improved experimental support for the new ISO C++ standard, C++11</a>,
including:
<ul>
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.8/changes.html,v
retrieving revision 1.129
@@ -292,7 +292,7 @@
<h4>Runtime Library (libstdc++)</h4>
<ul>
- <li><a href="https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#status.iso.2011">
+ <li><a href="https://gcc.gnu.org/onlinedocs/gcc-4.8.3/libstdc++/manual/manual/status.html#status.iso.2011">
Improved experimental support for the new ISO C++ standard, C++11</a>,
including:
<ul>
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.9/changes.html,v
retrieving revision 1.82
@@ -324,7 +324,7 @@
<h4>Runtime Library (libstdc++)</h4>
<ul>
- <li><a href="https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#status.iso.2011">
+ <li><a href="https://gcc.gnu.org/onlinedocs/gcc-4.9.2/libstdc++/manual/manual/status.html#status.iso.2011">
Improved support for C++11</a>, including:
<ul>
<li> support for <code><regex></code>;</li>
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/changes.html,v
retrieving revision 1.45
@@ -243,22 +243,27 @@
<h4 id="libstdcxx">Runtime Library (libstdc++)</h4>
<ul>
+ <li> A new implementation of <code>std::list</code> is enabled by default,
+ with an O(1) <code>size()</code> function; </li>
<li><a href="https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#status.iso.2011">
Improved support for C++11</a>, including:
<ul>
- <li> A new implementation of <code>std::list</code> is enabled by
- default, with an O(1) <code>size()</code> function; </li>
- <li> <code>std::deque</code> meets the allocator-aware container requirements;</li>
+ <li> <code>std::deque</code> and <code>std::vector<bool></code>
+ meet the allocator-aware container requirements;</li>
<li> movable and swappable iostream classes;</li>
<li> support for <code>std::align</code> and
<code>std::aligned_union</code>;</li>
- <li> Type traits <code>std::is_trivially_copyable</code>,
+ <li> type traits <code>std::is_trivially_copyable</code>,
<code>std::is_trivially_constructible</code>,
<code>std::is_trivially_assignable</code> etc.;
</li>
<li> I/O manipulators <code>std::put_time</code>,
<code>std::hexfloat</code> and <code>std::defaultfloat</code>;
</li>
+ <li> generic locale-aware <code>std::isblank</code>; </li>
+ <li> atomic operations for <code>std::shared_ptr</code>; </li>
+ <li> <code>std::notify_all_at_thread_exit()</code> and functions
+ for making futures ready at thread exit; </li>
</ul>
</li>
<li> Support for the C++11 <code>hexfloat</code> manipulator changes how
@@ -279,9 +284,13 @@
<li><a href="https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#status.iso.2014">
Improved experimental support for the Library Fundamentals TS</a>, including:
<ul>
- <li> Class <code>std::experimental::any</code>; </li>
- <li> Function template <code>std::experimental::apply</code>; </li>
- <li> Variable templates for type traits; </li>
+ <li> class <code>std::experimental::any</code>; </li>
+ <li> function template <code>std::experimental::apply</code>; </li>
+ <li> function template <code>std::experimental::sample</code>; </li>
+ <li> function template <code>std::experimental::search</code> and
+ related searcher types; </li>
+ <li> variable templates for type traits; </li>
+ <li> function template <code>std::experimental::not_fn</code>; </li>
</ul>
</li>
<li>New random number distributions <code>logistic_distribution</code> and