Index: styleguide/c++/c++11.html |
diff --git a/styleguide/c++/c++11.html b/styleguide/c++/c++11.html |
index 239a282a13626484e39051dbe752e4fd6c3fd2e0..41b8683b3de3244e247e2bbe6cf1390a26670d44 100644 |
--- a/styleguide/c++/c++11.html |
+++ b/styleguide/c++/c++11.html |
@@ -473,6 +473,14 @@ and <a href="http://en.cppreference.com/w/cpp/container/unordered_set">std::unor |
<td>Per the <a href="https://google.github.io/styleguide/cppguide.html#std_hash">Google style guide</a>, specify custom hashers instead of specializing <code>std::hash</code> for custom types. <a href="https://groups.google.com/a/chromium.org/forum/#!topic/cxx/nCdjQqnouO4">Discussion thread</a>.</td> |
</tr> |
+<tr> |
+<td>Tuples</td> |
+<td><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><a href="https://crbug.com/554987">Tracking bug</a> to plan moving from <code>base::Tuple</code> to <code>std::tuple</code>. See also <code>std::tie</code></td> |
Nico
2016/02/09 12:23:11
Should this mention the vs2013 compiler bug and ho
tzik
2016/02/10 15:10:54
Done
|
+</tr> |
+ |
</tbody> |
</table> |
@@ -1029,14 +1037,6 @@ Declaring functions</a></td> |
</tr> |
<tr> |
-<td>Tuples</td> |
-<td><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><a href="https://crbug.com/554987">Tracking bug</a> to plan moving from <code>base::Tuple</code> to <code>std::tuple</code>. See also <code>std::tie</code></td> |
-</tr> |
- |
-<tr> |
<td>Type-Generic Math Functions</td> |
<td>Functions within <code><ctgmath></code></td> |
<td>Provides a means to call real or complex functions |