Skip to content

Commit 93ee7c3

Browse files
committed
Fixing gcc error in streams.h
1 parent 2eac6f1 commit 93ee7c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Release/include/cpprest/streams.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ namespace Concurrency { namespace streams
879879
if (ch == concurrency::streams::char_traits<CharType>::eof()) return pplx::task_from_result(false);
880880
if (ch == '\n')
881881
{
882-
return buffer.bumpc().then([](concurrency::streams::char_traits<CharType>::int_type) { return false; });
882+
return buffer.bumpc().then([](typename concurrency::streams::char_traits<CharType>::int_type) { return false; });
883883
}
884884

885885
return pplx::task_from_result(false);

0 commit comments

Comments
 (0)