Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Side by Side Diff: styleguide/c++/c++11.html

Issue 601483003: Fix some markup. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright 2014 The Chromium Authors. All rights reserved. 3 Copyright 2014 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 <html> 7 <html>
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <link rel="stylesheet" href="c++11.css"> 10 <link rel="stylesheet" href="c++11.css">
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 <td><code>T(T&amp;&amp; t)</code> and <code>T&amp; operator=(T&amp;&amp; t)</cod e></td> 379 <td><code>T(T&amp;&amp; t)</code> and <code>T&amp; operator=(T&amp;&amp; t)</cod e></td>
380 <td>Reference that only binds to a temporary object</td> 380 <td>Reference that only binds to a temporary object</td>
381 <td>TODO: documentation link</td> 381 <td>TODO: documentation link</td>
382 <td></td> 382 <td></td>
383 </tr> 383 </tr>
384 384
385 <tr> 385 <tr>
386 <td>Static Assertions</td> 386 <td>Static Assertions</td>
387 <td><code>static_assert(<i>bool</i>, <i>string</i>)</code></td> 387 <td><code>static_assert(<i>bool</i>, <i>string</i>)</code></td>
388 <td>Tests compile-time conditions</td> 388 <td>Tests compile-time conditions</td>
389 <td><<a href="http://en.cppreference.com/w/cpp/language/static_assert">Static As sertion</a></td> 389 <td><a href="http://en.cppreference.com/w/cpp/language/static_assert">Static Ass ertion</a></td>
390 <td></td> 390 <td></td>
391 </tr> 391 </tr>
392 392
393 <tr> 393 <tr>
394 <td>Union Class Members</td> 394 <td>Union Class Members</td>
395 <td><code>union <i>name</i> { <i>class</i> <i>var</i>}</code></td> 395 <td><code>union <i>name</i> { <i>class</i> <i>var</i>}</code></td>
396 <td>Allows class type members</td> 396 <td>Allows class type members</td>
397 <td><a href="http://en.cppreference.com/w/cpp/language/union"> 397 <td><a href="http://en.cppreference.com/w/cpp/language/union">
398 Union declarations</a></td> 398 Union declarations</a></td>
399 <td></td> 399 <td></td>
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
954 </tr> 954 </tr>
955 955
956 </tbody> 956 </tbody>
957 </table> 957 </table>
958 958
959 </details> 959 </details>
960 960
961 </div> 961 </div>
962 </body> 962 </body>
963 </html> 963 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698