Skip to content

Commit

Permalink
c++11: Alphabetize c++11.html
Browse files Browse the repository at this point in the history
Missed that they were alphabetized earlier.

BUG=none

Review URL: https://codereview.chromium.org/647773002

Cr-Commit-Position: refs/heads/master@{#299212}
  • Loading branch information
davidben authored and Commit bot committed Oct 10, 2014
1 parent 1167859 commit ff71997
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions styleguide/c++/c++11.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,14 @@ <h2 id="whitelist">C++11 Allowed Features</h2>
<th style='width:240px;'>Notes and Discussion Thread</th>
</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>&gt;&gt;</code> for <code>&gt; &gt;</code> and <br />
Expand Down Expand Up @@ -156,14 +164,6 @@ <h2 id="whitelist">C++11 Allowed Features</h2>
<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>

Expand Down

0 comments on commit ff71997

Please sign in to comment.