We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2512bcf + aad5e5c commit 029754aCopy full SHA for 029754a
docs/type_traits.adoc
@@ -51,7 +51,7 @@ int x = stdx::apply_sequence<L1>([&] <typename... Ts> () { return (0 + ... + Ts:
51
// x is 3
52
53
using L2 = stdx::value_list<1, 2>;
54
-int y = stdx::apply_sequence<L1>([&] <auto... Vs> () { return (0 + ... + Vs); });
+int y = stdx::apply_sequence<L2>([&] <auto... Vs> () { return (0 + ... + Vs); });
55
// y is 3
56
----
57
0 commit comments