Chromium Code Reviews| Index: styleguide/c++/c++11.html |
| diff --git a/styleguide/c++/c++11.html b/styleguide/c++/c++11.html |
| index 9659c9bf423b7471f4d46bdd895cf008d5a88026..45559dd898ac46242f3fa682dc26499b77453223 100644 |
| --- a/styleguide/c++/c++11.html |
| +++ b/styleguide/c++/c++11.html |
| @@ -163,6 +163,28 @@ Are Variadic macros nonstandard?</a></td> |
| <p>This section lists features that are not allowed to be used yet. |
| +<table id="banned_list" class="unlined striped"> |
| +<tbody> |
| + |
| +<tr> |
| +<th style='width:240px;'>Feature or Library</th> |
| +<th style='width:240px;'>Snippet</th> |
| +<th style='width:240px;'>Description</th> |
| +<th style='width:240px;'>Documentation Link</th> |
| +<th style='width:240px;'>Notes</th> |
| +</tr> |
| + |
| +<tr> |
| +<td>Rvalue References (and Move Semantics)</td> |
| +<td><code>T(T&& t)</code> and <code>T& operator=(T&& t)</code></td> |
| +<td>Reference that only binds to a temporary object</td> |
| +<td>TODO: documentation link</td> |
| +<td>To be revisited in the future. Allowed in exceptional cases where approved by the OWNERS of src/styleguide/c++/.</td> |
| +</tr> |
| + |
| +</tbody> |
| +</table> |
|
Avi (use Gerrit)
2014/09/26 20:33:23
Is there a reason you put this in a different tabl
|
| + |
| <h3 id="blacklist_banned">C++11 Banned Features</h3> |
| <p>This section will list C++11 features that are not allowed in the Chromium |
| @@ -414,14 +436,6 @@ sequences, easing parsing in regex expressions, for example</td> |
| </tr> |
| <tr> |
| -<td>Rvalue References (and Move Semantics)</td> |
| -<td><code>T(T&& t)</code> and <code>T& operator=(T&& t)</code></td> |
| -<td>Reference that only binds to a temporary object</td> |
| -<td>TODO: documentation link</td> |
| -<td></td> |
| -</tr> |
| - |
| -<tr> |
| <td>Union Class Members</td> |
| <td><code>union <i>name</i> { <i>class</i> <i>var</i>}</code></td> |
| <td>Allows class type members</td> |