| Index: styleguide/c++/c++11.html
|
| diff --git a/styleguide/c++/c++11.html b/styleguide/c++/c++11.html
|
| index c0274d97fb02529c7dd7cc7b242d7711f46adf66..6d870fbd0e39caf68bfbc4ebb072dd60a601d3cf 100644
|
| --- a/styleguide/c++/c++11.html
|
| +++ b/styleguide/c++/c++11.html
|
| @@ -197,7 +197,7 @@ Are Variadic macros nonstandard?</a></td>
|
|
|
| <h3 id="blacklist_banned">C++11 Banned Features</h3>
|
|
|
| -<p>This section will list C++11 features that are not allowed in the Chromium
|
| +<p>This section lists C++11 features that are not allowed in the Chromium
|
| codebase.
|
| </p>
|
|
|
| @@ -243,6 +243,17 @@ The __func__ Predeclared Identifier is Coming to C++</a></td>
|
| </tr>
|
|
|
| <tr>
|
| +<td>Inherited Constructors</td>
|
| +<td><code>class Derived : Base {
|
| +<br /> using Base::Base;
|
| +<br />};</code></td>
|
| +<td>Allow derived classes to inherit constructors from base classes</td>
|
| +<td><a href="http://en.cppreference.com/w/cpp/language/using_declaration">Using-declaration</a></td>
|
| +<td>Doesn't work in MSVS2013. Reevaluate once it does. <a
|
| +href="https://groups.google.com/a/chromium.org/d/msg/chromium-dev/BULzgIKZ-Ao/PLO7_GoVNvYJ">Discussion thread</a></td>
|
| +</tr>
|
| +
|
| +<tr>
|
| <td><code>long long</code> Type</td>
|
| <td><code>long long <i>var</i>= <i>value</i>;</code></td>
|
| <td>An integer of at least 64 bits</td>
|
|
|