Chromium Code Reviews| Index: styleguide/c++/c++11.html |
| diff --git a/styleguide/c++/c++11.html b/styleguide/c++/c++11.html |
| index e132f6853de48402be9d4479d42fda729488fec5..d0d51427344f45b7cdcdc8566793ff76f140e627 100644 |
| --- a/styleguide/c++/c++11.html |
| +++ b/styleguide/c++/c++11.html |
| @@ -288,6 +288,16 @@ Parameter pack</a></td> |
| <td><a href="http://en.cppreference.com/w/cpp/utility/tuple/tie">std::tie</a></td> |
| <td>General use of <code>std::tuple</code>, and <code>std::tie</code> for unpacking or multiple assignments is still not allowed. <a href="https://groups.google.com/a/chromium.org/d/topic/cxx/3DZ64dIMRTY/discussion">Discussion thread</a></td> |
| </tr> |
| + |
| +<tr> |
| +<td>Move Semantics</td> |
| +<td><code>std::move()</code></td> |
| +<td>Facilitates efficient move operations</td> |
| +<td><a href="http://en.cppreference.com/w/cpp/utility/move"> |
| +<code>std::move</code> reference</a></td> |
| +<td></td> |
|
Nico
2015/11/16 18:47:04
Can you put "Note: std::move() is allowed but writ
|
| +</tr> |
| + |
| </tbody> |
| </table> |
| @@ -809,15 +819,6 @@ and <a href="http://en.cppreference.com/w/cpp/iterator/prev">std::prev</a> |
| </tr> |
| <tr> |
| -<td>Move Semantics</td> |
| -<td><code>std::move()</code></td> |
| -<td>Facilitates efficient move operations</td> |
| -<td><a href="http://en.cppreference.com/w/cpp/utility/move"> |
| -<code>std::move</code> reference</a></td> |
| -<td></td> |
| -</tr> |
| - |
| -<tr> |
| <td>Pointer Traits Class Template</td> |
| <td><code>std::pointer_traits</code></td> |
| <td>Provides a standard way to access properties |