We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff02cf2 commit 1f0c2fcCopy full SHA for 1f0c2fc
README.md
@@ -174,10 +174,7 @@ Use the method `emplace` to create a task:
174
tf::Task A = taskflow.emplace([](){ std::cout << "Task A\n"; });
175
```
176
177
-
178
-:warning: Note creating multiple tasks at one time is not supported in C++14 version.
179
180
-You can create multiple tasks at one time:
+You can create multiple tasks at one time (:warning: this is not supported in C++14 version):
181
```cpp
182
auto [A, B, C, D] = taskflow.emplace(
183
[] () { std::cout << "Task A\n"; },
0 commit comments