Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ff02cf2

Browse files
committed
Refactor README
1 parent 6c97d09 commit ff02cf2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,10 @@ Use the method `emplace` to create a task:
174174
tf::Task A = taskflow.emplace([](){ std::cout << "Task A\n"; });
175175
```
176176
177-
You can create multiple tasks at one time:
178177
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:
179181
```cpp
180182
auto [A, B, C, D] = taskflow.emplace(
181183
[] () { std::cout << "Task A\n"; },

0 commit comments

Comments
 (0)