We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dbe83b4 + d6ab5cc commit d7a1191Copy full SHA for d7a1191
1 file changed
showcase/index.html
@@ -510,8 +510,8 @@ <h2>Conditional Tasking</h2>
510
auto A = tf.emplace([](){}).name("A");
511
auto B = tf.emplace([](){}).name("B");
512
auto C = tf.emplace([](){}).name("C");
513
-auto D = tf.emplace([](){}).name("D");
514
-auto E = tf.emplace([](){ return rand()%3; }).name("E");
+auto D = tf.emplace([](){ return rand()%3; }).name("D");
+auto E = tf.emplace([](){}).name("E");
515
auto F = tf.emplace([](){}).name("F");
516
517
A.precede(B, C); // A runs before B and C
0 commit comments