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 11bc9f0 commit c1a4067Copy full SHA for c1a4067
Release/include/cpprest/astreambuf.h
@@ -27,10 +27,10 @@ namespace Concurrency
27
namespace details
28
{
29
template<bool B=true>
30
- task<bool> _do_while(std::function<task<bool>(void)> func)
+ pplx::task<bool> _do_while(std::function<pplx::task<bool>(void)> func)
31
32
- task<bool> first = func();
33
- return first.then([=](bool guard) -> task<bool> {
+ pplx::task<bool> first = func();
+ return first.then([=](bool guard) -> pplx::task<bool> {
34
if (guard)
35
return Concurrency::details::_do_while<B>(func);
36
else
0 commit comments