| Index: styleguide/c++/c++11.html
|
| diff --git a/styleguide/c++/c++11.html b/styleguide/c++/c++11.html
|
| index 2bb4540065000baa7915a7f9736c950556ce6af8..b7f290878384d394982599ae6e1abb04596744ef 100644
|
| --- a/styleguide/c++/c++11.html
|
| +++ b/styleguide/c++/c++11.html
|
| @@ -56,6 +56,14 @@ few months later, when we have more experience with the language.</p>
|
| </tr>
|
|
|
| <tr>
|
| +<td>Aliases</td>
|
| +<td><code>using <i>new_alias</i> = <i>typename</i></code></td>
|
| +<td>Allow parameterized typedefs</td>
|
| +<td><a href="http://en.cppreference.com/w/cpp/language/type_alias">Type alias (using syntax)</a></td>
|
| +<td>Use instead of typedef, unless the header needs to be compatible with C. <a href="https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/8dOAMzgR4ao">Discussion thread</a></td>
|
| +</tr>
|
| +
|
| +<tr>
|
| <td>Angle Bracket Parsing in Templates</td>
|
| <td><code>>></code> for <code>> ></code> and <br />
|
| <code><::</code> for <code>< ::</code></td>
|
| @@ -156,14 +164,6 @@ Are Variadic macros nonstandard?</a></td>
|
| <td>Usage should be rare. Use instead of .pump files. <a href="https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/6ItymeMXpMc">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>
|
| -<td><a href="http://en.cppreference.com/w/cpp/language/type_alias">Type alias (using syntax)</a></td>
|
| -<td>Use instead of typedef, unless the header needs to be compatible with C. <a href="https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/8dOAMzgR4ao">Discussion thread</a></td>
|
| -</tr>
|
| -
|
| </tbody>
|
| </table>
|
|
|
|
|