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 cdb6625 commit fedc819Copy full SHA for fedc819
doc/async_worker_variants.md
@@ -399,7 +399,7 @@ class EchoWorker : public AsyncProgressQueueWorker<uint32_t> {
399
void Execute(const ExecutionProgress& progress) {
400
// Need to simulate cpu heavy task
401
for (uint32_t i = 0; i < 100; ++i) {
402
- progress.Send(&i, 1)
+ progress.Send(&i, 1);
403
std::this_thread::sleep_for(std::chrono::seconds(1));
404
}
405
0 commit comments