Skip to content

Commit d7a1191

Browse files
Merge pull request #4 from HRXWEB/fix/wrong_code_in_showcase
fix(showcase): update taskflow order
2 parents dbe83b4 + d6ab5cc commit d7a1191

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

showcase/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -510,8 +510,8 @@ <h2>Conditional Tasking</h2>
510510
auto A = tf.emplace([](){}).name("A");
511511
auto B = tf.emplace([](){}).name("B");
512512
auto C = tf.emplace([](){}).name("C");
513-
auto D = tf.emplace([](){}).name("D");
514-
auto E = tf.emplace([](){ return rand()%3; }).name("E");
513+
auto D = tf.emplace([](){ return rand()%3; }).name("D");
514+
auto E = tf.emplace([](){}).name("E");
515515
auto F = tf.emplace([](){}).name("F");
516516

517517
A.precede(B, C); // A runs before B and C

0 commit comments

Comments
 (0)