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>
7 <keyword>ISO C++</keyword>
9 <keyword>evolution</keyword>
10 <keyword>deprecation</keyword>
11 <keyword>history</keyword>
17 A list of user-visible changes, in chronological order
20 <section xml:id="api.rel_300"><info><title><constant>3.0</constant></title></info>
24 Extensions moved to <filename class="directory">include/ext</filename>.
28 Include files from the SGI/HP sources that pre-date the ISO standard
29 are added. These files are placed into
30 the <filename class="directory">include/backward</filename> directory and a deprecated warning
31 is added that notifies on inclusion (<literal>-Wno-deprecated</literal>
32 deactivates the warning.)
35 <para>Deprecated include <filename class="headerfile"><backward/strstream></filename> added.</para>
37 <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>.
44 <section xml:id="api.rel_310"><info><title><constant>3.1</constant></title></info>
50 Extensions from SGI/HP moved from <code>namespace std</code>
51 to <code>namespace __gnu_cxx</code>. As part of this, the following
53 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>.
57 Extensions to <code>basic_filebuf</code> introduced: <code>__gnu_cxx::enc_filebuf</code>, and <code>__gnu_cxx::stdio_filebuf</code>.
61 Extensions to tree data structures added in <filename class="headerfile"><ext/rb_tree></filename>.
65 Removal of <filename class="headerfile"><ext/tree></filename>, moved to <filename class="headerfile"><backward/tree.h></filename>.
70 <section xml:id="api.rel_320"><info><title><constant>3.2</constant></title></info>
74 <para>Symbol versioning introduced for shared library.</para>
76 <para>Removal of include <filename class="headerfile"><backward/strstream.h></filename>.</para>
78 <para>Allocator changes. Change <code>__malloc_alloc</code> to <code>malloc_allocator</code> and <code>__new_alloc</code> to <code>new_allocator</code>. </para>
80 <para> For GCC releases from 2.95 through the 3.1 series, defining
81 <literal>__USE_MALLOC</literal> on the gcc command line would change the
82 default allocation strategy to instead use <code>malloc</code> and
83 <code>free</code>. For the 3.2 and 3.3 release series the same
84 functionality was spelled <literal>_GLIBCXX_FORCE_NEW</literal>. From
85 GCC 3.4 onwards the default allocator uses <code>new</code> anyway,
86 but for the optional pooling allocators the functionality is enabled by
87 setting <literal>GLIBCXX_FORCE_NEW</literal> in the environment, see
88 <link linkend="manual.ext.allocator.mt">the mt allocator chapter</link>
93 <para>Error handling in iostreams cleaned up, made consistent. </para>
98 <section xml:id="api.rel_330"><info><title><constant>3.3</constant></title></info>
104 <section xml:id="api.rel_340"><info><title><constant>3.4</constant></title></info>
112 <para> Extensions for generic characters and <code>char_traits</code> added in <filename class="headerfile"><ext/pod_char_traits.h></filename>.
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.
120 Support for <code>char_traits</code> beyond builtin types.
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>.
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.
137 <para>Default behavior of <code>std::allocator</code> has changed.</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>.
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<T,A></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<T,A></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<T, __alloc></code> is thus the same as
159 <code>allocator<T></code>.
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.
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"/>
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>
188 <entry><classname>__gnu_cxx::new_allocator<T></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>
194 <entry><classname>__gnu_cxx::malloc_allocator<T></classname></entry>
195 <entry><filename class="headerfile"><ext/malloc_allocator.h></filename></entry>
196 <entry><classname>std::__malloc_alloc_template<int></classname></entry>
197 <entry><filename class="headerfile"><memory></filename></entry>
200 <entry><classname>__gnu_cxx::debug_allocator<T></classname></entry>
201 <entry><filename class="headerfile"><ext/debug_allocator.h></filename></entry>
202 <entry><classname>std::debug_alloc<T></classname></entry>
203 <entry><filename class="headerfile"><memory></filename></entry>
206 <entry><classname>__gnu_cxx::__pool_alloc<T></classname></entry>
207 <entry><filename class="headerfile"><ext/pool_allocator.h></filename></entry>
208 <entry><classname>std::__default_alloc_template<bool,int></classname></entry>
209 <entry><filename class="headerfile"><memory></filename></entry>
212 <entry><classname>__gnu_cxx::__mt_alloc<T></classname></entry>
213 <entry><filename class="headerfile"><ext/mt_allocator.h></filename></entry>
218 <entry><classname>__gnu_cxx::bitmap_allocator<T></classname></entry>
219 <entry><filename class="headerfile"><ext/bitmap_allocator.h></filename></entry>
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.
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"/>
243 <entry>Allocator</entry>
244 <entry>Include</entry>
245 <entry>Version</entry>
251 <entry><classname>__gnu_cxx::array_allocator<T></classname></entry>
252 <entry><filename class="headerfile"><ext/array_allocator.h></filename></entry>
256 <entry><classname>__gnu_cxx::throw_allocator<T></classname></entry>
257 <entry><filename class="headerfile"><ext/throw_allocator.h></filename></entry>
266 Debug mode first appears.
270 Precompiled header support <acronym>PCH</acronym> support.
274 Macro guard for changed, from <literal>_GLIBCPP_</literal> to <literal>_GLIBCXX_</literal>.
278 Extension <filename class="headerfile"><ext/stdio_sync_filebuf.h></filename> added.
282 Extension <filename class="headerfile"><ext/demangle.h></filename> added.
288 <section xml:id="api.rel_400"><info><title><constant>4.0</constant></title></info>
293 TR1 features first appear.
297 Extension allocator <filename class="headerfile"><ext/array_allocator.h></filename> added.
301 Extension <code>codecvt</code> specializations moved to <filename class="headerfile"><ext/codecvt_specializations.h></filename>.
305 Removal of <filename class="headerfile"><ext/demangle.h></filename>.
311 <section xml:id="api.rel_410"><info><title><constant>4.1</constant></title></info>
318 Removal of <filename class="headerfile"><cassert></filename> from all standard headers: now has to be explicitly included for <code>std::assert</code> calls.
321 <para> Extensions for policy-based data structures first added. New includes,
322 types, namespace <code>pb_assoc</code>.
327 <para> Extensions for typelists added in <filename class="headerfile"><ext/typelist.h></filename>.
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>.
335 <section xml:id="api.rel_420"><info><title><constant>4.2</constant></title></info>
341 <para> Default visibility attributes applied to <code>namespace std</code>. Support for <code>-fvisibility</code>.
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
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.)
357 <para> Extensions for policy-based data structures revised. New includes,
358 types, namespace moved to <code>__pb_ds</code>.
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>.
371 <section xml:id="api.rel_430"><info><title><constant>4.3</constant></title></info>
378 C++0X features first appear.
381 <para>TR1 <filename class="headerfile"><regex></filename> and <filename class="headerfile"><cmath></filename>'s mathematical special function added.
385 Backward include edit.
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>
401 <filename class="headerfile"><hash_map></filename> and <filename class="headerfile"><hash_set></filename>
405 <para>Added in C++11</para>
407 <filename class="headerfile"><auto_ptr.h></filename> and <filename class="headerfile"><binders.h></filename>
414 Header dependency streamlining.
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>
432 Debug mode for <filename class="headerfile"><unordered_map></filename> and <filename class="headerfile"><unordered_set></filename>.
436 Parallel mode first appears.
439 <para>Variadic template implementations of items in <filename class="headerfile"><tuple></filename> and
440 <filename class="headerfile"><functional></filename>.
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>.
450 PCH binary files no longer installed. Instead, the source files are installed.
454 Namespace pb_ds moved to __gnu_pb_ds.
460 <section xml:id="api.rel_440"><info><title><constant>4.4</constant></title></info>
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>
488 Updated and improved.
491 <filename class="headerfile"><algorithm></filename>,
492 <filename class="headerfile"><system_error></filename>,
493 <filename class="headerfile"><type_traits></filename>
499 Use of the GNU extension namespace association converted to inline namespaces.
505 Preliminary support for <classname>initializer_list</classname>
506 and defaulted and deleted constructors in container classes.
512 <classname>unique_ptr</classname>.
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.
527 Support for string conversions <function>to_string</function>
528 and <function>to_wstring</function>.
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>.
542 Exception propagation support,
543 including <classname>exception_ptr</classname>, <function>current_exception</function>, <function>copy_exception</function>,
544 and <function>rethrow_exception</function>.
551 Uglification of <literal>try</literal> to <literal>__try</literal>
552 and <literal>catch</literal> to <literal>__catch</literal>.
556 Audit of internal mutex usage, conversion to functions returning static
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>.
569 <section xml:id="api.rel_450"><info><title><constant>4.5</constant></title></info>
584 <filename class="headerfile"><functional></filename>,
585 <filename class="headerfile"><future></filename>,
586 <filename class="headerfile"><random></filename>
592 Updated and improved.
595 <filename class="headerfile"><atomic></filename>,
596 <filename class="headerfile"><system_error></filename>,
597 <filename class="headerfile"><type_traits></filename>
603 Add support for explicit operators and standard layout types.
609 Profile mode first appears.
613 Support for decimal floating-point arithmetic, including <classname>decimal32</classname>, <classname>decimal64</classname>, and <classname>decimal128</classname>.
617 Python pretty-printers are added for use with appropriately-advanced versions of <command>gdb</command>.
621 Audit for application of function attributes nothrow, const, pure, and noreturn.
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.
630 <para> Extensions modified: <filename class="headerfile"><ext/throw_allocator.h></filename>.
634 <section xml:id="api.rel_460"><info><title><constant>4.6</constant></title></info>
637 Use constexpr and nullptr where appropriate throughout the library.
641 The library was updated to avoid including
642 <filename class="headerfile"><stddef.h></filename> in order
643 to reduce namespace pollution.
646 <para>Reference-count annotations to assist data race detectors.
650 Added <function>make_exception_ptr</function> as an alias of
651 <function>copy_exception</function>.
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>
663 <classname>monotonic_clock</classname> renamed to
664 <classname>steady_clock</classname> as required by the final C++11
668 <para>A new clocale model for newlib is available.</para>
671 The library was updated to avoid including
672 <filename class="headerfile"><unistd.h></filename> in order
673 to reduce namespace pollution.
676 <para>Debug Mode was improved for unordered containers. </para>
680 <section xml:id="api.rel_480"><info><title><constant>4.8</constant></title></info>
683 New random number engines and distributions.
684 Optimisations for random.
687 <para>New --enable-libstdcxx-verbose configure option</para>
690 The --enable-libstdcxx-time configure option becomes unnecessary given a
691 sufficiently recent glibc.
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>
708 <section xml:id="api.rel_51"><info><title><constant>5</constant></title></info>
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.
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>
726 New non-reference-counted <classname>string</classname> implementation.
731 New <classname>list</classname> implementation containing a new
732 data member in order to provide O(1) <function>size()</function>.
737 New <classname>ios_base::failure</classname> implementation inheriting
738 from <classname>system_error</classname>.
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).
751 Changed formatting of floating point types when
752 <code>ios_base::fixed|ios_base::scientific</code> is set in a stream's
756 <para> Improved C++14 support and TS implementations. </para>
758 <para> New random number engines and distributions. </para>
761 GDB Xmethods for containers and <classname>unique_ptr</classname> added.
765 <classname>has_trivial_default_constructor</classname>,
766 <classname>has_trivial_copy_constructor</classname> and
767 <classname>has_trivial_copy_assign</classname> deprecated.
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>
777 <section xml:id="api.rel_61"><info><title><constant>6</constant></title></info>
779 <para> C++14 support completed. </para>
782 Support for mathematical special functions (ISO/IEC 29124:2010) added.
786 Assertions to check function preconditions can be enabled by defining the
787 <link linkend="manual.intro.using.macros"><symbol>_GLIBCXX_ASSERTIONS</symbol>
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.
796 <section xml:id="api.rel_71"><info><title><constant>7</constant></title></info>
799 The type of exception thrown by iostreams changed to the <code>cxx11</code>
800 ABI version of <classname>std::ios_base::failure</classname>.
804 Experimental C++17 support added, including most new library features.
805 The meaning of <classname>shared_ptr<T[]></classname> changed to
806 match the C++17 semantics.
810 <xref linkend="manual.intro.using.macros"><symbol>_GLIBCXX_RELEASE</symbol>
815 <classname>has_trivial_default_constructor</classname>,
816 <classname>has_trivial_copy_constructor</classname> and
817 <classname>has_trivial_copy_assign</classname> removed.
821 Calling a <code>std::bind</code> result as volatile was deprecated for C++17.
824 <para> Profile Mode was deprecated. </para>
826 <section xml:id="api.rel_72"><info><title><constant>7.2</constant></title></info>
829 Library Fundamentals TS header
830 <filename class="headerfile"><experimental/source_location></filename>
836 <section xml:id="api.rel_73"><info><title><constant>7.3</constant></title></info>
839 Including new C++14 or C++17 headers without a suitable <option>-std</option>
840 no longer causes compilation to fail via <literal>#error</literal>.
841 Instead the header is simply empty and doesn't define anything.
848 <section xml:id="api.rel_81"><info><title><constant>8</constant></title></info>
851 The exceptions thrown by iostreams can now be caught by handlers for either
852 version of <classname>std::ios_base::failure</classname>.
856 Improved experimental C++17 support. Headers
857 <filename class="headerfile"><charconv></filename> and
858 <filename class="headerfile"><filesystem></filename>.
859 Experimental implementation of the C++17 Filesystem library added.
863 Experimental C++2a support
864 (<function>to_address</function> and <classname>endian</classname>).
868 AddressSanitizer annotations added to <classname>std::vector</classname>
869 to detect out-of-range accesses to the unused capacity of a vector.
873 <function>std::char_traits<char16_t>::to_int_type(u'\uFFFF')</function>
874 now returns <literal>0xFFFD</literal>, as <literal>0xFFFF</literal> is
875 used for <function>std::char_traits<char16_t>::eof()</function>.
879 The extension allowing arithmetic on
880 <classname>std::atomic<void*></classname> and types like
881 <classname>std::atomic<R(*)()></classname> was deprecated.
885 The <function>std::uncaught_exception</function> function was deprecated
890 The nested typedefs <type>std::hash::result_type</type> and
891 <type>std::hash::argument_type</type> were deprecated for C++17 mode.
895 The deprecated iostream members <type>ios_base::io_state</type>,
896 <type>ios_base::open_mode</type>, <type>ios_base::seek_dir</type>, and
897 <function>basic_streambuf::stossc</function> were removed for C++17 mode.
901 The non-standard C++0x <function>std::copy_exception</function> function
906 For <option>-std=c++11</option>, <option>-std=c++14</option>, and
907 <option>-std=c++17</option> modes the <filename><complex.h></filename>
908 header no longer includes the C99 <filename><complex.h></filename>
913 For the non-default <option>--enable-symvers=gnu-versioned-namespace</option>
914 configuration, the shared library SONAME has been changed to
915 <filename>libstdc++.so.8</filename>.
919 The extension allowing containers to be instantiated with an allocator
920 that doesn't match the container's value type is no longer allowed in
921 strict (<option>-std=c++NN</option>) modes, only in
922 <option>-std=gnu++NN</option> modes.
927 <section xml:id="api.rel_91"><info><title><constant>9</constant></title></info>
931 <filename class="headerfile"><memory_resource></filename>
936 Experimental C++2a support improved, with new headers
937 <filename class="headerfile"><bit></filename> and
938 <filename class="headerfile"><version></filename> added.
939 Support for new character type <type>char8_t</type> added
940 to <classname>char_traits</classname>, <classname>basic_string</classname>,
941 <classname>numeric_limits</classname>,
942 and relevant locale facets and type traits.
946 Experimental implementation of the Networking TS library added,
948 <filename class="headerfile"><experimental/buffer></filename>,
949 <filename class="headerfile"><experimental/executor></filename>,
950 <filename class="headerfile"><experimental/internet></filename>,
951 <filename class="headerfile"><experimental/io_context></filename>,
952 <filename class="headerfile"><experimental/net></filename>,
953 <filename class="headerfile"><experimental/netfwd></filename>,
954 <filename class="headerfile"><experimental/socket></filename>,
956 <filename class="headerfile"><experimental/timer></filename>.
961 <section xml:id="api.rel_101"><info><title><constant>10</constant></title></info>
962 <para> Deprecated features removed:
964 <listitem> Profile Mode </listitem>
965 <listitem> <classname>__gnu_cxx::array_allocator</classname> </listitem>
970 The non-standard <function>std::__is_nullptr_t</function> type trait
975 The <classname>std::packaged_task</classname> constructors taking
976 an allocator argument are only defined for C++11 and C++14.
980 Several members of <classname>std::allocator</classname> were removed
981 for C++20 mode. The removed functionality has been provided by
982 <classname>std::allocator_traits</classname> since C++11 and that should
987 The type of the <classname>std::iterator</classname> base class of
988 <classname>std::istreambuf_iterator</classname> was changed to be
989 consistent for all <option>-std</option> modes.
990 Before GCC 10.1 the base class had one type in C++98 mode and a
991 different type in C++11 and later modes. The type in C++98 mode
992 was changed to be the same as for C++11 and later.
996 Experimental C++2a support improved, with new headers
997 <filename class="headerfile"><concepts></filename>,
998 <filename class="headerfile"><ranges></filename>,
999 <filename class="headerfile"><compare></filename>,
1000 <filename class="headerfile"><coroutine></filename>,
1001 <filename class="headerfile"><numbers></filename>,
1002 <filename class="headerfile"><span></filename>,
1004 <filename class="headerfile"><stop_token></filename>
1009 The extension allowing containers to be instantiated with an allocator
1010 that doesn't match the container's value type is no longer allowed in
1011 C++20 mode, even in non-strict <option>-std=gnu++20</option> mode.
1016 <section xml:id="api.rel_111"><info><title><constant>11</constant></title></info>
1019 The <option>--enable-cheaders=c_std</option> configuration
1024 When compiling as C++20, the <function>operator>></function> overloads
1025 for extracting strings into character buffers only work with arrays,
1030 <code>std::string::reserve(n)</code> will no longer reduce
1031 the string's capacity.
1032 Calling <function>reserve()</function> with no arguments is equivalent
1033 to <function>shrink_to_fit()</function>, but is deprecated.
1034 <function>shrink_to_fit()</function> should be used instead.
1039 <section xml:id="api.rel_121"><info><title><constant>12</constant></title></info>
1042 The <function>std::random_shuffle</function> algorithms are deprecated
1043 for C++14 and later. The C++11 <function>std::shuffle</function> algorithm
1044 can be used instead.
1048 The <function>std::unexpected</function> function and related typedef and
1049 accessors for the unexpected handler are deprecated for C++11 and later.
1050 Dynamic exception specifications should be replaced with <code>noexcept</code>.
1054 C++98 adaptable function utilities
1055 (<code>std::bind1st</code>, <code>std::unary_function</code>,
1056 <code>std::ptr_fun</code>, <code>std::mem_fun_ref</code> etc.)
1057 were deprecated for C++11.
1058 <code>std::iterator</code>, <code>std::raw_storage_iterator</code>,
1059 <code>get_temporary_buffer</code>, and <code>std::not_fun</code>
1060 were deprecated for C++17.
1064 Non-standard <code>std::pair</code> constructors were deprecated.
1065 A non-standard default argument for
1066 <code>vector<bool>::insert(const_iterator, const bool&)</code>
1071 The <literal>bitmap</literal>, <literal>mt</literal>, and <literal>pool</literal>
1072 options for <option>--enable-libstdcxx-allocator</option> were removed.
1073 For the <literal>new</literal> option, <classname>std::allocator</classname>
1074 no longer derives from <classname>__gnu_cxx::new_allocator</classname>;
1075 they both derive from <classname>std::__new_allocator</classname> instead.
1079 <function>std::condition_variable::wait</function> changed to be
1080 <code>noexcept(false)</code> to allow thread cancellation exceptions to
1081 be thrown from <function>pthread_cond_wait</function> without aborting
1088 <section xml:id="api.rel_123"><info><title><constant>12.3</constant></title></info>
1090 Calling a <code>std::bind</code> result as volatile is ill-formed for C++20
1096 <section xml:id="api.rel_131"><info><title><constant>13</constant></title></info>
1099 Tunables <variable>glibcxx.eh_pool.obj_count</variable> and
1100 <variable>glibcxx.eh_pool.obj_size</variable> were added.
1103 <para>Static library <filename>libstdc++exp.a</filename> was added
1104 to provide the symbols for the experimental C++ Contracts support.</para>
1108 <section xml:id="api.rel_133"><info><title><constant>13.3</constant></title></info>
1111 Symbols for the Filesystem TS and C++23 <filename><stacktrace></filename>
1112 header were added to the static library <filename>libstdc++exp.a</filename>.
1117 <section xml:id="api.rel_141"><info><title><constant>14</constant></title></info>
1120 Deprecate the non-standard overload that allows <code>std::setfill</code>
1121 to be used with <code>std::basic_istream</code>.
1125 The extension allowing <code>std::basic_string</code> to be instantiated
1126 with an allocator that doesn't match the string's character type is no
1127 longer allowed in C++20 mode.
1132 <section xml:id="api.rel_151"><info><title><constant>15</constant></title></info>
1135 Enabled debug assertions by default for unoptimized builds.
1139 Added warnings when including the headers that were deprecated in C++17
1140 and removed in C++20:
1141 <filename class="headerfile"><ccomplex></filename>,
1142 <filename class="headerfile"><ciso646></filename>,
1143 <filename class="headerfile"><cstdalign></filename>,
1144 <filename class="headerfile"><cstdbool></filename>, and
1145 <filename class="headerfile"><ctgmath></filename>.
1149 Nested <code>result_type</code> and <code>argument_type</code> removed from
1150 <classname>std::hash</classname> specializations for C++20.