| Index: styleguide/c++/c++11.html
|
| diff --git a/styleguide/c++/c++11.html b/styleguide/c++/c++11.html
|
| index 123ecd8651ef92be7ba36289e6a8036ed026f0f4..f13d8a62dc78236df02eb9cb14aa2a2ee7032c3a 100644
|
| --- a/styleguide/c++/c++11.html
|
| +++ b/styleguide/c++/c++11.html
|
| @@ -75,6 +75,14 @@ with the language.</p>
|
| </tr>
|
|
|
| <tr>
|
| +<td>__func__ Local Variable</td>
|
| +<td><code>__func__</code></td>
|
| +<td>Provides a local variable containing the name of the enclosing function</td>
|
| +<td><a href="https://msdn.microsoft.com/en-us/library/dn919276.aspx">__func__</a></td>
|
| +<td>Use instead of the non-standard <code>__FUNCTION__</code>. <a href="https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/ojGfcgSDzHM">Discussion thread</a></td>
|
| +</tr>
|
| +
|
| +<tr>
|
| <td>Aliases</td>
|
| <td><code>using <i>new_alias</i> = <i>typename</i></code></td>
|
| <td>Allow parameterized typedefs</td>
|
| @@ -510,14 +518,6 @@ codebase.
|
| </tr>
|
|
|
| <tr>
|
| -<td>Function Local Variable</td>
|
| -<td><code>__func__</code></td>
|
| -<td>Provides a local variable of the name of the enclosing function for logging purposes</td>
|
| -<td><a href="http://www.informit.com/guides/content.aspx?g=cplusplus&seqNum=338">The __func__ Predeclared Identifier is Coming to C++</a></td>
|
| -<td>Reevaluate now that MSVS2015 is available. <a href="https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/ojGfcgSDzHM">Discussion thread</a></td>
|
| -</tr>
|
| -
|
| -<tr>
|
| <td>Inherited Constructors</td>
|
| <td><code>class Derived : Base {<br />
|
| using Base::Base;<br />
|
|
|