+2015-04-21 Jonathan Wakely <jwakely@redhat.com>
+
+ * doc/xml/manual/abi.xml: Use uppercase for C++ Standard Library.
+ * doc/xml/manual/using.xml: Document newer -std options. Use better
+ examples of nested namespaces.
+
2015-04-20 Jonathan Wakely <jwakely@redhat.com>
* doc/xml/manual/concurrency_extensions.xml: Update documentation
</para>
<para>
- By default, <command>g++</command> is equivalent to <command>g++ -std=gnu++98</command>. The standard library also defaults to this dialect.
+ The standard library conforms to the dialect of C++ specified by the
+ <option>-std</option> option passed to the compiler.
+ By default, <command>g++</command> is equivalent to
+ <command>g++ -std=gnu++98</command>.
</para>
<table frame="all" xml:id="table.cmd_options">
<tbody>
<row>
- <entry><literal>-std=c++98</literal></entry>
+ <entry><literal>-std=c++98</literal> or <literal>-std=c++03</literal>
+ </entry>
<entry>Use the 1998 ISO C++ standard plus amendments.</entry>
</row>
<row>
- <entry><literal>-std=gnu++98</literal></entry>
+ <entry><literal>-std=gnu++98</literal> or <literal>-std=gnu++03</literal>
+ </entry>
<entry>As directly above, with GNU extensions.</entry>
</row>
<entry>As directly above, with GNU extensions.</entry>
</row>
+ <row>
+ <entry><literal>-std=c++14</literal></entry>
+ <entry>Use the 2014 ISO C++ standard.</entry>
+ </row>
+
+ <row>
+ <entry><literal>-std=gnu++14</literal></entry>
+ <entry>As directly above, with GNU extensions.</entry>
+ </row>
+
<row>
<entry><literal>-fexceptions</literal></entry>
<entry>See <link linkend="intro.using.exception.no">exception-free dialect</link></entry>
<listitem><para>std</para>
<para>The ISO C++ standards specify that "all library entities are defined
within namespace std." This includes namespaces nested
-within <code>namespace std</code>, such as <code>namespace
-std::tr1</code>.
+within namespace <code>std</code>, such as namespace
+<code>std::chrono</code>.
</para>
</listitem>
<listitem><para>abi</para>