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

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

Issue 1312813007: styleguide: mention "alignof" operation under "Alignment Features" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 <title>C++11 use in Chromium</title> 10 <title>C++11 use in Chromium</title>
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 <th style='width:240px;'>Snippet</th> 402 <th style='width:240px;'>Snippet</th>
403 <th style='width:240px;'>Description</th> 403 <th style='width:240px;'>Description</th>
404 <th style='width:240px;'>Documentation Link</th> 404 <th style='width:240px;'>Documentation Link</th>
405 <th style='width:240px;'>Notes</th> 405 <th style='width:240px;'>Notes</th>
406 </tr> 406 </tr>
407 407
408 <tr> 408 <tr>
409 <td>Alignment Features</td> 409 <td>Alignment Features</td>
410 <td> 410 <td>
411 <code>alignas</code> specifier, 411 <code>alignas</code> specifier,
412 <code>alignof</code> operator,
412 <code>std::alignment_of&lt;T&gt;</code>, 413 <code>std::alignment_of&lt;T&gt;</code>,
413 <code>std::aligned_union&lt;Size, ...Types&gt;</code> and 414 <code>std::aligned_union&lt;Size, ...Types&gt;</code> and
414 <code>std::max_align_t</code></td> 415 <code>std::max_align_t</code></td>
415 <td>Object alignment</td> 416 <td>Object alignment</td>
416 <td><a href="http://en.cppreference.com/w/cpp/types/alignment_of">std::alignment _of</a></td> 417 <td><a href="http://en.cppreference.com/w/cpp/types/alignment_of">std::alignment _of</a></td>
417 <td></td> 418 <td></td>
418 </tr> 419 </tr>
419 420
420 <tr> 421 <tr>
421 <td>Attributes</td> 422 <td>Attributes</td>
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after
978 </tr> 979 </tr>
979 980
980 </tbody> 981 </tbody>
981 </table> 982 </table>
982 983
983 </details> 984 </details>
984 985
985 </div> 986 </div>
986 </body> 987 </body>
987 </html> 988 </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