| OLD | NEW |
| 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 Loading... |
| 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"(<i>raw_string</i>)";</code></td> | 337 <td><code>string <i>var</i>=R"(<i>raw_string</i>)";</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&& t)</code> and <code>T& operator=(T&& t)</cod
e></td> | 347 <td><code>T(T&& t)</code> and <code>T& operator=(T&& 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 Loading... |
| 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> |
| OLD | NEW |