| Index: styleguide/c++/c++11.html
|
| diff --git a/styleguide/c++/c++11.html b/styleguide/c++/c++11.html
|
| index 7bacf868193c111731f2358788ad8682f57d7948..8dd13d7a3119c6971c1243b2defac8ee4a2167e2 100644
|
| --- a/styleguide/c++/c++11.html
|
| +++ b/styleguide/c++/c++11.html
|
| @@ -393,14 +393,6 @@ template <typename T><br/>void Function(T&& t) { ... }</code></td>
|
| </tr>
|
|
|
| <tr>
|
| -<td>Lexicographical struct comparison</td>
|
| -<td><code>tie(a, b, c) <<br> tie(rhs.a, rhs.b, rhs.c)</code></td>
|
| -<td>Idiom for <code>operator<</code> implementation</td>
|
| -<td><a href="http://en.cppreference.com/w/cpp/utility/tuple/tie">std::tie</a></td>
|
| -<td>General use of <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>Math functions</td>
|
| <td>All C++11 features in <code><cmath></code>, e.g.:<br/>
|
| <code>INFINITY</code>, <code>NAN</code>, <code>FP_NAN</code><br/>
|
| @@ -451,10 +443,10 @@ template <typename T><br/>void Function(T&& t) { ... }</code></td>
|
|
|
| <tr>
|
| <td>Tuples</td>
|
| -<td><code>std::tuple</code></td>
|
| +<td>All C++11 features in <code><tuple></code>, e.g. <code>std::tie</code> and <code>std::tuple</code>.</td>
|
| <td>A fixed-size ordered collection of values of mixed types</td>
|
| -<td><a href="http://en.cppreference.com/w/cpp/utility/tuple">std::tuple</a></td>
|
| -<td>Prefer over <a href="https://crbug.com/554987">base::Tuple</a>.</td>
|
| +<td><a href="http://en.cppreference.com/w/cpp/header/tuple"><tuple></a></td>
|
| +<td>Prefer <code>std::tuple</code> over <a href="https://crbug.com/554987"><code>base::Tuple</code></a>.</td>
|
| </tr>
|
|
|
| <tr>
|
|
|