Thanks to visit codestin.com Credit goes to github.com
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.
1 parent 6c97d09 commit ff02cf2Copy full SHA for ff02cf2
README.md
@@ -174,8 +174,10 @@ Use the method `emplace` to create a task:
174
tf::Task A = taskflow.emplace([](){ std::cout << "Task A\n"; });
175
```
176
177
-You can create multiple tasks at one time:
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:
181
```cpp
182
auto [A, B, C, D] = taskflow.emplace(
183
[] () { std::cout << "Task A\n"; },
0 commit comments