Skip to content

Commit 1f0c2fc

Browse files
committed
Refactor README
1 parent ff02cf2 commit 1f0c2fc

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,10 +174,7 @@ Use the method `emplace` to create a task:
174174
tf::Task A = taskflow.emplace([](){ std::cout << "Task A\n"; });
175175
```
176176
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:
177+
You can create multiple tasks at one time (:warning: this is not supported in C++14 version):
181178
```cpp
182179
auto [A, B, C, D] = taskflow.emplace(
183180
[] () { std::cout << "Task A\n"; },

0 commit comments

Comments
 (0)