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 09d5984 commit 23f1c7cCopy full SHA for 23f1c7c
Release/include/cpprest/streams.h
@@ -883,11 +883,11 @@ namespace Concurrency { namespace streams
883
if (ch == concurrency::streams::char_traits<CharType>::eof()) return pplx::task_from_result(false);
884
if (ch == '\n')
885
{
886
- return buffer.bumpc().then([](
+ return buffer.bumpc().then([](
887
#ifndef _WIN32 // Required by GCC
888
- typename
+ typename
889
#endif
890
- concurrency::streams::char_traits<CharType>::int_type) { return false; });
+ concurrency::streams::char_traits<CharType>::int_type) { return false; });
891
}
892
return pplx::task_from_result(false);
893
};
0 commit comments