Skip to content

Commit 4ba746c

Browse files
committed
Merge branch 'thomasschaub-feature/remove-unused-var' into development
2 parents 0ecf5a0 + 3b6231e commit 4ba746c

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
@@ -673,7 +673,7 @@ namespace Concurrency { namespace streams
673673
if ( !_verify_and_return_task(details::_in_stream_msg, result) ) return result;
674674

675675
auto copy = std::make_shared<T>();
676-
return helper()->m_buffer.getn((CharType*)copy.get(), sizeof(T)).then([copy](pplx::task<size_t> op) -> T
676+
return helper()->m_buffer.getn((CharType*)copy.get(), sizeof(T)).then([copy](pplx::task<size_t>) -> T
677677
{
678678
return std::move(*copy);
679679
});

0 commit comments

Comments
 (0)