CWG 616, 1213 - value category of subobject references.
[official-gcc.git] / libstdc++-v3 / doc / xml / manual / evolution.xml
blob3288e2f6cf2353fd8c03c8eda9a876e8c73a7744
1 <section xmlns="http://docbook.org/ns/docbook" version="5.0" 
2          xml:id="appendix.porting.api" xreflabel="api">
3 <?dbhtml filename="api.html"?>
5 <info><title>API Evolution and Deprecation History</title>
6   <keywordset>
7     <keyword>ISO C++</keyword>
8     <keyword>api</keyword>
9     <keyword>evolution</keyword>
10     <keyword>deprecation</keyword>
11     <keyword>history</keyword>
12   </keywordset>
13 </info>
17 <para>
18 A list of user-visible changes, in chronological order
19 </para>
21 <section xml:id="api.rel_300"><info><title><constant>3.0</constant></title></info>
24   <para>
25 Extensions moved to <filename class="directory">include/ext</filename>.
26   </para>
28 <para>
29 Include files from the SGI/HP sources that pre-date the ISO standard
30 are added. These files are placed into
31 the <filename class="directory">include/backward</filename> directory and a deprecated warning
32 is added that notifies on inclusion (<literal>-Wno-deprecated</literal>
33 deactivates the warning.)
34 </para>
36 <para>Deprecated include <filename class="headerfile">backward/strstream</filename> added.</para>
38 <para>Removal of include <filename class="headerfile">builtinbuf.h</filename>, <filename class="headerfile">indstream.h</filename>, <filename class="headerfile">parsestream.h</filename>, <filename class="headerfile">PlotFile.h</filename>, <filename class="headerfile">SFile.h</filename>, <filename class="headerfile">stdiostream.h</filename>, and <filename class="headerfile">stream.h</filename>.
39 </para>
43 </section>
45 <section xml:id="api.rel_310"><info><title><constant>3.1</constant></title></info>
47   <para>
48   </para>
50 <para>
51 Extensions from SGI/HP moved from <code>namespace std</code>
52 to <code>namespace __gnu_cxx</code>. As part of this, the following
53 new includes are
54 added: <filename class="headerfile">ext/algorithm</filename>, <filename class="headerfile">ext/functional</filename>, <filename class="headerfile">ext/iterator</filename>, <filename class="headerfile">ext/memory</filename>, and <filename class="headerfile">ext/numeric</filename>.
55 </para>
57 <para>
58 Extensions to <code>basic_filebuf</code> introduced: <code>__gnu_cxx::enc_filebuf</code>, and <code>__gnu_cxx::stdio_filebuf</code>.
59 </para>
61 <para>
62 Extensions to tree data structures added in <filename class="headerfile">ext/rb_tree</filename>.
63 </para>
65 <para>
66 Removal of <filename class="headerfile">ext/tree</filename>, moved to <filename class="headerfile">backward/tree.h</filename>.
67 </para>
69 </section>
71 <section xml:id="api.rel_320"><info><title><constant>3.2</constant></title></info>
73   <para>
74   </para>
75 <para>Symbol versioning introduced for shared library.</para>
77 <para>Removal of include <filename class="headerfile">backward/strstream.h</filename>.</para>
79 <para>Allocator changes. Change <code>__malloc_alloc</code> to <code>malloc_allocator</code> and <code>__new_alloc</code> to <code>new_allocator</code>. </para>
81    <para> For GCC releases from 2.95 through the 3.1 series, defining
82    <literal>__USE_MALLOC</literal> on the gcc command line would change the
83    default allocation strategy to instead use <code> malloc</code> and
84    <function>free</function>. For the 3.2 and 3.3 release series the same
85    functionality was spelled <literal>_GLIBCXX_FORCE_NEW</literal>. From
86    GCC 3.4 onwards the functionality is enabled by setting
87    <literal>GLIBCXX_FORCE_NEW</literal> in the environment, see
88    <link linkend="manual.ext.allocator.mt">the mt allocator chapter</link>
89    for details.
90    </para>
93 <para>Error handling in iostreams cleaned up, made consistent. </para>
96 </section>
98 <section xml:id="api.rel_330"><info><title><constant>3.3</constant></title></info>
100   <para>
101   </para>
102 </section>
104 <section xml:id="api.rel_340"><info><title><constant>3.4</constant></title></info>
106   <para>
107   </para>
108 <para>
109 Large file support.
110 </para>
112 <para> Extensions for generic characters and <code>char_traits</code> added in <filename class="headerfile">ext/pod_char_traits.h</filename>.
113 </para>
115 <para>
116 Support for <code>wchar_t</code> specializations of <code>basic_filebuf</code> enhanced to support <code>UTF-8</code> and <code>Unicode</code>, depending on host. More hosts support basic <code>wchar_t</code> functionality.
117 </para>
119 <para>
120 Support for <code>char_traits</code> beyond builtin types.
121 </para>
123 <para>
124 Conformant <code>allocator</code> class and usage in containers. As
125 part of this, the following extensions are
126 added: <filename class="headerfile">ext/bitmap_allocator.h</filename>, <filename class="headerfile">ext/debug_allocator.h</filename>, <filename class="headerfile">ext/mt_allocator.h</filename>, <filename class="headerfile">ext/malloc_allocator.h</filename>,<filename class="headerfile">ext/new_allocator.h</filename>, <filename class="headerfile">ext/pool_allocator.h</filename>.
127 </para>
129 <para>
130 This is a change from all previous versions, and may require
131 source-level changes due to allocator-related changes to structures
132 names and template parameters, filenames, and file locations. Some,
133 like <code>__simple_alloc, __allocator, __alloc, </code> and <code>
134 _Alloc_traits</code> have been removed.
135 </para>
137 <para>Default behavior of <code>std::allocator</code> has changed.</para>
139 <para>
140    Previous versions prior to 3.4 cache allocations in a memory
141    pool, instead of passing through to call the global allocation
142    operators (i.e., <classname>__gnu_cxx::pool_allocator</classname>).  More
143    recent versions default to the
144    simpler <classname>__gnu_cxx::new_allocator</classname>.
145 </para>
147 <para> Previously, all allocators were written to the SGI
148    style, and all STL containers expected this interface. This
149    interface had a traits class called <code>_Alloc_traits</code> that
150    attempted to provide more information for compile-time allocation
151    selection and optimization. This traits class had another allocator
152    wrapper, <code>__simple_alloc&lt;T,A&gt;</code>, which was a
153    wrapper around another allocator, A, which itself is an allocator
154    for instances of T. But wait, there's more:
155    <code>__allocator&lt;T,A&gt;</code> is another adapter.  Many of
156    the provided allocator classes were SGI style: such classes can be
157    changed to a conforming interface with this wrapper:
158    <code>__allocator&lt;T, __alloc&gt;</code> is thus the same as
159    <code>allocator&lt;T&gt;</code>.
160    </para>
162    <para> The class <classname>allocator</classname> used the typedef
163    <type>__alloc</type> to select an underlying allocator that
164    satisfied memory allocation requests. The selection of this
165    underlying allocator was not user-configurable.
166    </para>
168 <table frame="all" xml:id="table.extension_allocators">
169 <title>Extension Allocators</title>
171 <tgroup cols="4" align="left" colsep="1" rowsep="1">
172 <colspec colname="c1"/>
173 <colspec colname="c2"/>
174 <colspec colname="c3"/>
175 <colspec colname="c4"/>
177   <thead>
178     <row>
179       <entry>Allocator (3.4)</entry>
180       <entry>Header (3.4)</entry>
181       <entry>Allocator (3.[0-3])</entry>
182       <entry>Header (3.[0-3])</entry>
183     </row>
184   </thead>
186   <tbody>
187   <row>
188     <entry><classname>__gnu_cxx::new_allocator&lt;T&gt;</classname></entry>
189     <entry><filename class="headerfile">ext/new_allocator.h</filename></entry>
190     <entry><classname>std::__new_alloc</classname></entry>
191     <entry><filename class="headerfile">memory</filename></entry>
192   </row>
193   <row>
194     <entry><classname>__gnu_cxx::malloc_allocator&lt;T&gt;</classname></entry>
195     <entry><filename class="headerfile">ext/malloc_allocator.h</filename></entry>
196     <entry><classname>std::__malloc_alloc_template&lt;int&gt;</classname></entry>
197     <entry><filename class="headerfile">memory</filename></entry>
198   </row>
199   <row>
200     <entry><classname>__gnu_cxx::debug_allocator&lt;T&gt;</classname></entry>
201     <entry><filename class="headerfile">ext/debug_allocator.h</filename></entry>
202     <entry><classname>std::debug_alloc&lt;T&gt;</classname></entry>
203     <entry><filename class="headerfile">memory</filename></entry>
204   </row>
205   <row>
206     <entry><classname>__gnu_cxx::__pool_alloc&lt;T&gt;</classname></entry>
207     <entry><filename class="headerfile">ext/pool_allocator.h</filename></entry>
208     <entry><classname>std::__default_alloc_template&lt;bool,int&gt;</classname></entry>
209     <entry><filename class="headerfile">memory</filename></entry>
210   </row>
211   <row>
212     <entry><classname>__gnu_cxx::__mt_alloc&lt;T&gt;</classname></entry>
213     <entry><filename class="headerfile">ext/mt_allocator.h</filename></entry>
214     <entry> </entry>
215     <entry> </entry>
216   </row>
217   <row>
218     <entry><classname>__gnu_cxx::bitmap_allocator&lt;T&gt;</classname></entry>
219     <entry><filename class="headerfile">ext/bitmap_allocator.h</filename></entry>
220     <entry> </entry>
221     <entry> </entry>
222   </row>
223   </tbody>
224 </tgroup>
225 </table>
227    <para> Releases after gcc-3.4 have continued to add to the collection
228    of available allocators. All of these new allocators are
229    standard-style. The following table includes details, along with
230    the first released version of GCC that included the extension allocator.
231    </para>
233 <table frame="all" xml:id="table.extension_allocators2">
234 <title>Extension Allocators Continued</title>
236 <tgroup cols="3" align="left" colsep="1" rowsep="1">
237 <colspec colname="c1"/>
238 <colspec colname="c2"/>
239 <colspec colname="c3"/>
241 <thead>
242   <row>
243     <entry>Allocator</entry>
244     <entry>Include</entry>
245     <entry>Version</entry>
246   </row>
247 </thead>
249 <tbody>
250   <row>
251     <entry><classname>__gnu_cxx::array_allocator&lt;T&gt;</classname></entry>
252     <entry><filename class="headerfile">ext/array_allocator.h</filename></entry>
253     <entry>4.0.0</entry>
254   </row>
255   <row>
256     <entry><classname>__gnu_cxx::throw_allocator&lt;T&gt;</classname></entry>
257     <entry><filename class="headerfile">ext/throw_allocator.h</filename></entry>
258     <entry>4.2.0</entry>
259   </row>
260 </tbody>
261 </tgroup>
262 </table>
265 <para>
266 Debug mode first appears.
267 </para>
269 <para>
270 Precompiled header support <acronym>PCH</acronym> support.
271 </para>
273 <para>
274 Macro guard for changed, from <literal>_GLIBCPP_</literal> to <literal>_GLIBCXX_</literal>.
275 </para>
277 <para>
278 Extension <filename class="headerfile">ext/stdio_sync_filebuf.h</filename> added.
279 </para>
281 <para>
282 Extension <filename class="headerfile">ext/demangle.h</filename> added.
283 </para>
286 </section>
288 <section xml:id="api.rel_400"><info><title><constant>4.0</constant></title></info>
290   <para>
291   </para>
292 <para>
293 TR1 features first appear.
294 </para>
296 <para>
297 Extension allocator <filename class="headerfile">ext/array_allocator.h</filename> added.
298 </para>
300 <para>
301 Extension <code>codecvt</code> specializations moved to <filename class="headerfile">ext/codecvt_specializations.h</filename>.
302 </para>
304 <para>
305 Removal of <filename class="headerfile">ext/demangle.h</filename>.
306 </para>
309 </section>
311 <section xml:id="api.rel_410"><info><title><constant>4.1</constant></title></info>
313   <para>
314   </para>
317 <para>
318 Removal of <filename class="headerfile">cassert</filename> from all standard headers: now has to be explicitly included for <code>std::assert</code> calls.
319 </para>
321 <para> Extensions for policy-based data structures first added. New includes,
322 types, namespace <code>pb_assoc</code>.
323 </para>
327 <para> Extensions for typelists added in <filename class="headerfile">ext/typelist.h</filename>.
328 </para>
330 <para> Extension for policy-based <code>basic_string</code> first added: <code>__gnu_cxx::__versa_string</code> in <filename class="headerfile">ext/vstring.h</filename>.
331 </para>
333 </section>
335 <section xml:id="api.rel_420"><info><title><constant>4.2</constant></title></info>
337   <para>
338   </para>
341 <para> Default visibility attributes applied to <code>namespace std</code>. Support for <code>-fvisibility</code>.
342 </para>
344 <para>TR1 <filename class="headerfile">random</filename>, <filename class="headerfile">complex</filename>, and C compatibility headers added.</para>
346 <para> Extensions for concurrent programming consolidated
347 into <filename class="headerfile">ext/concurrence.h</filename> and <filename class="headerfile">ext/atomicity.h</filename>,
348 including change of namespace to <code>__gnu_cxx</code> in some
349 cases. Added types
350 include <code>_Lock_policy</code>, <code>__concurrence_lock_error</code>, <code>__concurrence_unlock_error</code>, <code>__mutex</code>, <code>__scoped_lock</code>.</para>
352 <para> Extensions for type traits consolidated
353 into <filename class="headerfile">ext/type_traits.h</filename>. Additional traits are added
354 (<code>__conditional_type</code>, <code>__enable_if</code>, others.)
355 </para>
357 <para> Extensions for policy-based data structures revised. New includes,
358 types, namespace moved to <code>__pb_ds</code>.
359 </para>
361 <para> Extensions for debug mode modified: now nested in <code>namespace
362 std::__debug</code> and extensions in <code>namespace
363 __gnu_cxx::__debug</code>.</para>
365 <para> Extensions added: <filename class="headerfile">ext/typelist.h</filename>
366 and <filename class="headerfile">ext/throw_allocator.h</filename>.
367 </para>
369 </section>
371 <section xml:id="api.rel_430"><info><title><constant>4.3</constant></title></info>
373   <para>
374   </para>
377 <para>
378 C++0X features first appear.
379 </para>
381 <para>TR1 <filename class="headerfile">regex</filename> and <filename class="headerfile">cmath</filename>'s mathematical special function added.
382 </para>
384 <para>
385 Backward include edit.
386 </para>
387 <itemizedlist>
388   <listitem>
389     <para>Removed</para>
390   <para>
391 <filename class="headerfile">algobase.h</filename> <filename class="headerfile">algo.h</filename> <filename class="headerfile">alloc.h</filename> <filename class="headerfile">bvector.h</filename> <filename class="headerfile">complex.h</filename>
392 <filename class="headerfile">defalloc.h</filename> <filename class="headerfile">deque.h</filename> <filename class="headerfile">fstream.h</filename> <filename class="headerfile">function.h</filename> <filename class="headerfile">hash_map.h</filename> <filename class="headerfile">hash_set.h</filename>
393 <filename class="headerfile">hashtable.h</filename> <filename class="headerfile">heap.h</filename> <filename class="headerfile">iomanip.h</filename> <filename class="headerfile">iostream.h</filename> <filename class="headerfile">istream.h</filename> <filename class="headerfile">iterator.h</filename>
394 <filename class="headerfile">list.h</filename> <filename class="headerfile">map.h</filename> <filename class="headerfile">multimap.h</filename> <filename class="headerfile">multiset.h</filename> <filename class="headerfile">new.h</filename> <filename class="headerfile">ostream.h</filename> <filename class="headerfile">pair.h</filename> <filename class="headerfile">queue.h</filename> <filename class="headerfile">rope.h</filename> <filename class="headerfile">set.h</filename> <filename class="headerfile">slist.h</filename> <filename class="headerfile">stack.h</filename> <filename class="headerfile">streambuf.h</filename> <filename class="headerfile">stream.h</filename> <filename class="headerfile">tempbuf.h</filename>
395 <filename class="headerfile">tree.h</filename> <filename class="headerfile">vector.h</filename>
396   </para>
397   </listitem>
398   <listitem>
399     <para>Added</para>
400   <para>
401   <filename class="headerfile">hash_map</filename> and <filename class="headerfile">hash_set</filename>
402   </para>
403   </listitem>
404   <listitem>
405     <para>Added in C++11</para>
406   <para>
407     <filename class="headerfile">auto_ptr.h</filename> and <filename class="headerfile">binders.h</filename>
408   </para>
409   </listitem>
411 </itemizedlist>
413 <para>
414 Header dependency streamlining.
415 </para>
417 <itemizedlist>
418   <listitem><para><filename class="headerfile">algorithm</filename> no longer includes <filename class="headerfile">climits</filename>, <filename class="headerfile">cstring</filename>, or <filename class="headerfile">iosfwd</filename> </para></listitem>
419   <listitem><para><filename class="headerfile">bitset</filename> no longer includes <filename class="headerfile">istream</filename> or <filename class="headerfile">ostream</filename>, adds <filename class="headerfile">iosfwd</filename> </para></listitem>
420   <listitem><para><filename class="headerfile">functional</filename> no longer includes <filename class="headerfile">cstddef</filename></para></listitem>
421   <listitem><para><filename class="headerfile">iomanip</filename> no longer includes <filename class="headerfile">istream</filename>, <filename class="headerfile">istream</filename>, or <filename class="headerfile">functional</filename>, adds <filename class="headerfile">ioswd</filename> </para></listitem>
422   <listitem><para><filename class="headerfile">numeric</filename> no longer includes <filename class="headerfile">iterator</filename></para></listitem>
423   <listitem><para><filename class="headerfile">string</filename> no longer includes <filename class="headerfile">algorithm</filename> or <filename class="headerfile">memory</filename></para></listitem>
425   <listitem><para><filename class="headerfile">valarray</filename> no longer includes <filename class="headerfile">numeric</filename> or <filename class="headerfile">cstdlib</filename></para></listitem>
426   <listitem><para><filename class="headerfile">tr1/hashtable</filename> no longer includes <filename class="headerfile">memory</filename> or <filename class="headerfile">functional</filename></para></listitem>
427   <listitem><para><filename class="headerfile">tr1/memory</filename> no longer includes <filename class="headerfile">algorithm</filename></para></listitem>
428   <listitem><para><filename class="headerfile">tr1/random</filename> no longer includes <filename class="headerfile">algorithm</filename> or <filename class="headerfile">fstream</filename></para></listitem>
429 </itemizedlist>
431 <para>
432 Debug mode for <filename class="headerfile">unordered_map</filename> and <filename class="headerfile">unordered_set</filename>.
433 </para>
435 <para>
436 Parallel mode first appears.
437 </para>
439 <para>Variadic template implementations of items in <filename class="headerfile">tuple</filename> and
440     <filename class="headerfile">functional</filename>.
441 </para>
443 <para>Default <code>what</code> implementations give more elaborate
444     exception strings for <code>bad_cast</code>,
445     <code>bad_typeid</code>, <code>bad_exception</code>, and
446     <code>bad_alloc</code>.
447 </para>
449 <para>
450 PCH binary files no longer installed. Instead, the source files are installed.
451 </para>
453 <para>
454 Namespace pb_ds moved to __gnu_pb_ds.
455 </para>
457 </section>
460 <section xml:id="api.rel_440"><info><title><constant>4.4</constant></title></info>
462   <para>
463   </para>
465 <para>
466 C++0X features.
467 </para>
469 <itemizedlist>
470 <listitem>
471   <para>
472     Added.
473   </para>
474   <para>
475     <filename class="headerfile">atomic</filename>,
476     <filename class="headerfile">chrono</filename>,
477     <filename class="headerfile">condition_variable</filename>,
478     <filename class="headerfile">forward_list</filename>,
479     <filename class="headerfile">initializer_list</filename>,
480     <filename class="headerfile">mutex</filename>,
481     <filename class="headerfile">ratio</filename>,
482     <filename class="headerfile">thread</filename>
483   </para>
484 </listitem>
486 <listitem>
487   <para>
488     Updated and improved.
489   </para>
490   <para>
491     <filename class="headerfile">algorithm</filename>,
492     <filename class="headerfile">system_error</filename>,
493     <filename class="headerfile">type_traits</filename>
494   </para>
495 </listitem>
497 <listitem>
498   <para>
499     Use of the GNU extension namespace association converted to inline namespaces.
500   </para>
501 </listitem>
503 <listitem>
504   <para>
505     Preliminary support for <classname>initializer_list</classname>
506     and defaulted and deleted constructors in container classes.
507   </para>
508 </listitem>
510 <listitem>
511   <para>
512     <classname>unique_ptr</classname>.
513   </para>
514 </listitem>
516 <listitem>
517   <para>
518     Support for new character types <type>char16_t</type>
519     and <type>char32_t</type> added
520     to <classname>char_traits</classname>, <classname>basic_string</classname>, <classname>numeric_limits</classname>,
521     and assorted compile-time type traits.
522   </para>
523 </listitem>
525 <listitem>
526   <para>
527     Support for string conversions <function>to_string</function>
528     and <function>to_wstring</function>.
529   </para>
530 </listitem>
532 <listitem>
533   <para>
534     Member functions taking string arguments were added to iostreams
535     including <classname>basic_filebuf</classname>, <classname>basic_ofstream</classname>,
536     and <classname>basic_ifstream</classname>.
537   </para>
538 </listitem>
540 <listitem>
541   <para>
542     Exception propagation support,
543     including <classname>exception_ptr</classname>, <function>current_exception</function>, <function>copy_exception</function>,
544     and <function>rethrow_exception</function>.
545   </para>
546 </listitem>
547 </itemizedlist>
550   <para>
551 Uglification of <literal>try</literal> to <literal>__try</literal>
552 and <literal>catch</literal> to <literal>__catch</literal>.
553   </para>
555   <para>
556 Audit of internal mutex usage, conversion to functions returning static
557 local mutex.
558   </para>
560 <para> Extensions
561 added: <filename class="headerfile">ext/pointer.h</filename>
562 and <filename class="headerfile">ext/extptr_allocator.h</filename>. Support
563 for non-standard pointer types has been added
564 to <classname>vector</classname>
565 and <classname>forward_list</classname>.
566 </para>
567 </section>
569 <section xml:id="api.rel_450"><info><title><constant>4.5</constant></title></info>
571   <para>
572   </para>
574 <para>
575 C++0X features.
576 </para>
578 <itemizedlist>
579 <listitem>
580   <para>
581     Added.
582   </para>
583   <para>
584     <filename class="headerfile">functional</filename>,
585     <filename class="headerfile">future</filename>,
586     <filename class="headerfile">random</filename>
587   </para>
588 </listitem>
590 <listitem>
591   <para>
592     Updated and improved.
593   </para>
594   <para>
595     <filename class="headerfile">atomic</filename>,
596     <filename class="headerfile">system_error</filename>,
597     <filename class="headerfile">type_traits</filename>
598   </para>
599 </listitem>
601 <listitem>
602   <para>
603     Add support for explicit operators and standard layout types.
604   </para>
605 </listitem>
606 </itemizedlist>
608 <para>
609 Profile mode first appears.
610 </para>
612 <para>
613 Support for decimal floating-point arithmetic, including <classname>decimal32</classname>, <classname>decimal64</classname>, and <classname>decimal128</classname>.
614 </para>
616 <para>
617 Python pretty-printers are added for use with appropriately-advanced versions of <command>gdb</command>.
618 </para>
620 <para>
621 Audit for application of function attributes nothrow, const, pure, and noreturn.
622 </para>
624 <para>
625 The default behavior for comparing typeinfo names changed, so
626 in <filename class="headerfile">typeinfo</filename>, <literal>__GXX_MERGED_TYPEINFO_NAMES</literal>
627 now defaults to zero.
628 </para>
630 <para> Extensions modified: <filename class="headerfile">ext/throw_allocator.h</filename>.
631 </para>
632 </section>
634 <section xml:id="api.rel_460"><info><title><constant>4.6</constant></title></info>
636 <para>
637   Use constexpr and nullptr where appropriate throughout the library.
638 </para>
640 <para>
641   The library was updated to avoid including
642   <filename class="headerfile">stddef.h</filename> in order
643   to reduce namespace pollution.
644 </para>
646 <para>Reference-count annotations to assist data race detectors.
647 </para>
649 <para>
650   Added <function>make_exception_ptr</function> as an alias of
651   <function>copy_exception</function>.
652 </para>
654 </section>
656 <section xml:id="api.rel_470"><info><title><constant>4.7</constant></title></info>
658 <para>Use of noexcept throughout library.</para>
660 <para>Partial support for C++11 allocators first appears.</para>
662 <para>
663   <classname>monotonic_clock</classname> renamed to
664   <classname>steady_clock</classname> as required by the final C++11
665   standard.
666 </para>
668 <para>A new clocale model for newlib is available.</para>
670 <para>
671   The library was updated to avoid including
672   <filename class="headerfile">unistd.h</filename> in order
673   to reduce namespace pollution.
674 </para>
676 <para>Debug Mode was improved for unordered containers. </para>
678 </section>
680 <section xml:id="api.rel_480"><info><title><constant>4.8</constant></title></info>
682 <para>
683   New random number engines and distributions.
684   Optimisations for random.
685 </para>
687 <para>New --enable-libstdcxx-verbose configure option</para>
689 <para>
690   The --enable-libstdcxx-time configure option becomes unnecessary given a
691   sufficiently recent glibc.
692 </para>
694 </section>
696 <section xml:id="api.rel_490"><info><title><constant>4.9</constant></title></info>
698 <para> Implementation of <classname>regex</classname> completed. </para>
700 <para> C++14 library and TS implementations are added. </para>
702 <para> <function>copy_exception</function> deprecated. </para>
704 <para> <classname>__gnu_cxx::array_allocator</classname> deprecated. </para>
706 </section>
708 <section xml:id="api.rel_51"><info><title><constant>5</constant></title></info>
710 <para>
711   ABI transition adds new implementations of several components, using the
712   <code>abi_tag</code> attribute and the <code>__cxx11</code> inline
713   namespace to distinguish the new entities from the old ones.
714 </para>
716 <itemizedlist>
717 <listitem>
718   <para>
719     Use of the new or old ABI can be selected per-translation unit with the
720     <xref linkend="manual.intro.using.macros"><symbol>_GLIBCXX_USE_CXX11_ABI</symbol>
721     macro</xref>.
722   </para>
723 </listitem>
724 <listitem>
725   <para>
726     New non-reference-counted <classname>string</classname> implementation.
727   </para>
728 </listitem>
729 <listitem>
730   <para>
731     New <classname>list</classname> implementation containing a new
732     data member in order to provide O(1) <function>size()</function>.
733   </para>
734 </listitem>
735 <listitem>
736   <para>
737     New <classname>ios_base::failure</classname> implementation inheriting
738     from <classname>system_error</classname>.
739   </para>
740 </listitem>
741 </itemizedlist>
743 <para>
744   C++11 support completed (movable iostreams, new I/O manipulators,
745   Unicode conversion utilities, atomic operations for
746   <classname>shared_ptr</classname>, functions for notifying condition
747   variables and making futures ready at thread exit).
748 </para>
750 <para>
751    Changed formatting of floating point types when
752    <code>ios_base::fixed|ios_base::scientific</code> is set in a stream's
753    format flags.
754 </para>
756 <para> Improved C++14 support and TS implementations. </para>
758 <para> New random number engines and distributions. </para>
760 <para>
761   GDB Xmethods for containers and <classname>unique_ptr</classname> added.
762 </para>
764 <para>
765   <classname>has_trivial_default_constructor</classname>,
766   <classname>has_trivial_copy_constructor</classname> and
767   <classname>has_trivial_copy_assign</classname> deprecated.
768 </para>
770 <section xml:id="api.rel_53"><info><title><constant>5.3</constant></title></info>
771 <para> Experimental implementation of the C++ Filesystem TS added. </para>
773 </section>
775 </section>
777 <section xml:id="api.rel_61"><info><title><constant>6</constant></title></info>
779 <para> C++14 support completed. </para>
781 <para>
782   Support for mathematical special functions (ISO/IEC 29124:2010) added.
783 </para>
785 <para>
786   Assertions to check function preconditions can be enabled by defining the
787   <xref linkend="manual.intro.using.macros"><symbol>_GLIBCXX_ASSERTIONS</symbol>
788   macro</xref>.
789   The initial set of assertions are a subset of the checks enabled by
790   the Debug Mode, but without the ABI changes and changes to algorithmic
791   complexity that are caused by enabling the full Debug Mode.
792 </para>
794 </section>
796 <section xml:id="api.rel_71"><info><title><constant>7</constant></title></info>
798 <para>
799   The type of exception thrown by iostreams changed to the <code>cxx11</code>
800   ABI version of <classname>std::ios_base::failure</classname>.
801 </para>
803 <para>
804   Experimental C++17 support added, including most new library features.
805   The meaning of <classname>shared_ptr&lt;T[]&gt;</classname> changed to
806   match the C++17 semantics.
807 </para>
809 <para>
810   <xref linkend="manual.intro.using.macros"><symbol>_GLIBCXX_RELEASE</symbol>
811   macro</xref> added.
812 </para>
814 <para>
815   <classname>has_trivial_default_constructor</classname>,
816   <classname>has_trivial_copy_constructor</classname> and
817   <classname>has_trivial_copy_assign</classname> removed.
818 </para>
820 <para> Profile Mode was deprecated. </para>
822 <section xml:id="api.rel_73"><info><title><constant>7.3</constant></title></info>
824 <para>
825   Including new C++14 or C++17 headers without a suitable <option>-std</option>
826   no longer causes compilation to fail via <literal>#error</literal>.
827   Instead the header is simply empty and doesn't define anything.
828 </para>
830 </section>
832 </section>
834 <section xml:id="api.rel_81"><info><title><constant>8</constant></title></info>
836 <para>
837   The exceptions thrown by iostreams can now be caught by handlers for either
838   version of <classname>std::ios_base::failure</classname>.
839 </para>
841 <para>
842   Experimental implementation of the C++17 Filesystem library added.
843 </para>
845 <para>
846   AddressSanitizer annotations added to <classname>std::vector</classname>
847   to detect out-of-range accesses to the unused capacity of a vector.
848 </para>
850 <para>
851   <function>std::char_traits&lt;char16_t&gt;::to_int_type(u'\uFFFF')</function>
852   now returns <literal>0xFFFD</literal>, as <literal>0xFFFF</literal> is
853   used for <function>std::char_traits&lt;char16_t&gt;::eof()</function>.
854 </para>
856 <para>
857   The extension allowing arithmetic on
858   <classname>std::atomic&lt;void*&gt;</classname> and types like
859   <classname>std::atomic&lt;R(*)()&gt;</classname> was deprecated.
860 </para>
862 <para>
863   The <function>std::uncaught_exception</function> function was deprecated
864   for C++17 mode.
865 </para>
867 <para>
868   The nested typedefs <type>std::hash::result_type</type> and
869   <type>std::hash::argument_type</type> were deprecated for C++17 mode.
870 </para>
872 <para>
873   The deprecated iostream members <type>ios_base::io_state</type>,
874   <type>ios_base::open_mode</type>, <type>ios_base::seek_dir</type>, and
875   <function>basic_streambuf::stossc</function> were removed for C++17 mode.
876 </para>
878 <para>
879   The non-standard C++0x <function>std::copy_exception</function> function
880   was removed.
881 </para>
883 <para>
884   For <option>-std=c++11</option>, <option>-std=c++14</option>, and
885   <option>-std=c++17</option> modes the <filename>&lt;complex.h&gt;</filename>
886   header no longer includes the C99 <filename>&lt;complex.h&gt;</filename>
887   header.
888 </para>
890 <para>
891   For the non-default <option>--enable-symvers=gnu-versioned-namespace</option>
892   configuration, the shared library SONAME has been changed to
893   <filename>libstdc++.so.8</filename>.
894 </para>
896 </section>
898 </section>