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

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

Issue 1416033004: Fix reference to non-existent MSVS version (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 <td>Use an stdint.h type if you need a 64bit number. <a href="https://groups.goo gle.com/a/chromium.org/forum/#!topic/chromium-dev/RxugZ-pIDxk">Discussion thread </a></td> 332 <td>Use an stdint.h type if you need a 64bit number. <a href="https://groups.goo gle.com/a/chromium.org/forum/#!topic/chromium-dev/RxugZ-pIDxk">Discussion thread </a></td>
333 </tr> 333 </tr>
334 334
335 <tr> 335 <tr>
336 <td>Raw String Literals</td> 336 <td>Raw String Literals</td>
337 <td><code>string <i>var</i>=R&quot;(<i>raw_string</i>)&quot;;</code></td> 337 <td><code>string <i>var</i>=R&quot;(<i>raw_string</i>)&quot;;</code></td>
338 <td>Allows a string to be encoded without any escape 338 <td>Allows a string to be encoded without any escape
339 sequences, easing parsing in regex expressions, for example</td> 339 sequences, easing parsing in regex expressions, for example</td>
340 <td><a href="http://en.cppreference.com/w/cpp/language/string_literal"> 340 <td><a href="http://en.cppreference.com/w/cpp/language/string_literal">
341 string literal</a></td> 341 string literal</a></td>
342 <td>Causes incorrect line numbers in MSVS2014 and gcc. Reevaluate once that work s. <a href="https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/ 2kWQHbbuMHI">Discussion thread</a></td> 342 <td>Causes incorrect line numbers in MSVS2013 and gcc. Reevaluate once that work s. <a href="https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/ 2kWQHbbuMHI">Discussion thread</a></td>
343 </tr> 343 </tr>
344 344
345 <tr> 345 <tr>
346 <td>Rvalue References (and Move Semantics)</td> 346 <td>Rvalue References (and Move Semantics)</td>
347 <td><code>T(T&amp;&amp; t)</code> and <code>T&amp; operator=(T&amp;&amp; t)</cod e></td> 347 <td><code>T(T&amp;&amp; t)</code> and <code>T&amp; operator=(T&amp;&amp; t)</cod e></td>
348 <td>Reference that only binds to a temporary object</td> 348 <td>Reference that only binds to a temporary object</td>
349 <td><a href="http://en.cppreference.com/w/cpp/language/references#Rvalue_referen ces"> 349 <td><a href="http://en.cppreference.com/w/cpp/language/references#Rvalue_referen ces">
350 Rvalue references</a></td> 350 Rvalue references</a></td>
351 <td>To be revisited in the future. Allowed in exceptional cases where approved by the OWNERS of src/styleguide/c++/. <a href="https://groups.google.com/a/chrom ium.org/d/topic/chromium-dev/UnRaORb4TSw">Discussion thread</a></td> 351 <td>To be revisited in the future. Allowed in exceptional cases where approved by the OWNERS of src/styleguide/c++/. <a href="https://groups.google.com/a/chrom ium.org/d/topic/chromium-dev/UnRaORb4TSw">Discussion thread</a></td>
352 </tr> 352 </tr>
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after
979 </tr> 979 </tr>
980 980
981 </tbody> 981 </tbody>
982 </table> 982 </table>
983 983
984 </details> 984 </details>
985 985
986 </div> 986 </div>
987 </body> 987 </body>
988 </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